# python

pyinstaller

生成一个exe文件
pyinstaller tk.py --noconsole --onefile
加图标
pyinstaller -F -i favicon.ico tk.py
去掉弹窗
pyinstaller -F -w -i favicon.ico tk.py  
1
2
3
4
5
6
Last Updated: 8/28/2022, 4:42:23 PM