07 2021 档案
摘要: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-
阅读全文