step 1:
cd 到python3.7安装根目录下的Scripts文件夹 如:cd C:\Program Files\Python37\Scripts 可以通过查找pip.exe来确定正确的文件夹路径
step 2:
安装所需文件的开发版 安装命令:pip install https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz
安装成功后scripts文件夹内会有一个pyinstaller.exe
step 3:
转换py文件:pyinstaller -F 文件路径(如:d:/my.py) 或者直接把.py复制到scripts文件夹 然后执行pyinstaller -F xxx.py
注意:转换后的exe文件在scripts的dist文件夹内
原文地址:https://www.cnblogs.com/dataxiong/p/11644976.html
时间: 2024-10-15 13:51:31