pyinstaller打包exe指令

pyinstaller打包exe指令

1、-F(–onefile):打包到一个exe文件中,默认是-D文件夹。
2、-w(–windowed) :打出的桌面程序去掉命令行黑框
3、-n(–name): 指定名称
4、-i(–icon):修改程序默认图标,如:–icon=logo.ico

如:
pyinstaller -F -w -i gen.ico TestDataGen.py
pyinstaller --name=“MyApplication” --windowed --onefile hello.py

你可能感兴趣的:(python)