摘要:
Activiti流程图 阅读全文
摘要:
Vue3.x学习笔记(摘录) 官网链接:https://v3.cn.vuejs.org/ 相关链接:Vue3.x入门 相关链接:初探 Vue3.0 中的一大亮点——Proxy ! PS:内容仅从相关链接地址摘录,便于学习及使用时查看回顾 常用语法 来源链接:Vue3.x入门 入口函数 setup e 阅读全文
摘要:
PythonGui的exe生成 1. 生成exe的库(pyinstaller)下载 pip install pyinstaller 2.cmd进入py文件所在文件夹 3.生成exe文件 图标文件后缀必须为.ico,且像素需要16*16 pyinstaller -F -w -i 图标文件 py文件 - 阅读全文
摘要:
Java调用python的方式 https://blog.csdn.net/qq_26591517/article/details/80441540 pom依赖 pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http:/ 阅读全文
摘要:
Ubuntu初次使用 openssh安装 Ubuntu默认未安装openssh-server,会导致服务器IP配置后,IP能ping通,但ssh无法连接 1. 查看系统openssh是否安装 ubuntu@ubuntu:~$ dpkg -l | grep -i openssh ii openssh- 阅读全文
摘要:
Centos7安装cmake3 前期准备 openssl-devel已安装 cmake3.1以上已安装 下载地址 下载方式说明: wget https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2.tar.gz 安 阅读全文
摘要:
linux系统搭建Python环境 参考: 在Linux系统中搭建Python环境 CentOS 7.3安装完整开发环境 1. 安装wget插件:yum install wget [root@localhost python]# yum install wget Failed to set loca 阅读全文
摘要:
docker拉取centos镜像并配置远程访问 参考: docker新建centos镜像并配置远程访问 docker容器添加对外映射端口 Docker容器里的centos、unbuntu无法使用 systemctl 命令的解决方案 一、docker镜像安装及容器启动 1. docker拉取cento 阅读全文
摘要:
参考:https://www.runoob.com/docker/centos-docker-install.html 参考:https://docs.docker.com/install/linux/docker-ce/centos/ 1.卸载旧版本 [root@localhost ~]# yum 阅读全文
摘要:
参考文档:https://github.com/Ryan-Miao/docker-yapi 1. 安装docker环境 略 2. 安装docker-compose工具 2.1.下载地址 https://github.com/docker/compose/releases 2.2.上传到虚拟机的/ho 阅读全文