pyinstaller打包python程序为exe文件
一、安装库
1、安装库
pip install pyinstaller
2、使用
pyinstaller test.py
3、常用命令
pyinstaller -w -F test.py #打包为无控制台程序
pyinstaller -F test.py #打包为有控制台程序
pyinstaller -w -F -i picture.ico test.py #打包为无控制台程序并更改图标为picture.ico
pyinstaller.exe -w -F --key 123456 test.py # 加密打包
二、执行打包命令后出现报错信息如下
1、
===================&