第一步:下载PyInstaller
https://github.com/pyinstaller/pyinstaller
方法二:下载源码安装
在github中打包下载,解压到电脑中,运行命令行进入此目录。
//进入子目录 bootloader
cd bootloader
//build the bootloader 运行
python ./waf configure build install
//重新进入根目录
cd ..
//安装pyinstaller
python setup.py install
第三步:查看安装结果,运行命令:
pyinstaller --version
说明安装成功。
第四步:简单的编译,运行代码:
a)简单编译会产生很多包
pyinstaller D:\xxx\xx\hello.py
b)只产生一个exe文件
pyinstaller -F D:\xxx\xx\hello.py
c)直接发布的exe应用带命令行调试窗口,在指令内加入-w命令可以屏蔽
pyinstaller -w D:\xxx\xx\hello.py