Appearance
python用pyinstaller打包exe,去掉黑窗口
使用Python编写程序将Python脚本打包成可执行文件(EXE),但是会有一个命令框产生,很烦,所以,去掉这个框
1,安装pyinstaller
bash
pip install pyinstaller
1
2,打包产生cmd命令框
bash
pyinstaller --onefile main.py
1
3,去掉这个烦人的命令框,只需要多加一个参数 “--noconsole”
bash
pyinstaller --onefile --noconsole main.py
1
就可以了。