pyinstaller 发表于 2022-06-23 分类于 python 介绍windows打包插件,打包为.exe文件。打包的文件会放在disc folder下。 安装1pip install pyinstaller 程序调用12345678910111213141516官网:(https://pyinstaller.org/en/stable/usage.html)#power shell 输入pyinstaller --name="test" (options) D:\Blog\Hexo\source\_posts\python\openpyxl.md#options:--help #show help message--windowed #donot open console window--console #open console window--onefile #ouput one file exe file (fit for single file program)--onedir #output one dir file (fir for multiple file program)--icon=".\icon" #change default icon (must in form of .ico)#examplepyinstaller --name="test" --windowed --onefile --icon=".\icon" .\openpyxl.py 注意事项头文件import头文件尽量减少,多用from少直接import来减少打包程序大小和加快运行速度 打包的文件数multi-file程序尽量使用 –onedir 加快开启速度