您好,欢迎访问一九零五行业门户网

Pyintaller 的使用方法

pyinstaller介绍:python打包程序,可以把.py程序打包成.exe
windows下的安装方法:
pip3 install pyinstaller
程序打包(需cd到程序所在目录)
c:\python35\scripts\pyinstaller -f -w -i image\256.ico maintab.py
-f 打宝成一个程序
-w 运行时没有黑窗
-i 使用图标(图标需使用ico格式,推荐像素256x256)
其它类似信息

推荐信息