首先安装 pyinstaller
pip install pyinstaller
进行打包
pyinstaller -F mainrunner.py
mainrunner.py为入口程序
打包完成,在mainrunner.py 同级生成dist目录,进入目录有mainrunner.exe 文件,即打包成功
其它:
去除命令行黑窗
pyinstaller -F -w **.py
添加图标
pyinstaller -F -w -i **.ico **.py
pyinstaller 下载地址:https://pypi.org/project/pyinstaller/3.0/#files,版本自己选择
解压进入安装包,执行
python setup.py install