pip3 install pyinstaller #安装这个模块
-F 参数表示生成一个单独的exe文件。但是生成的文件大,运行速度慢。
-D 参数表示生成一个文件夹。
pyinstaller -F test.py #打成一个exe文件
pyinstaller -D test.py #打成一个文件夹
-F 参数生成的单独可执行文件在dist目录中。
-D 参数生成的的文件夹在dist目录中。
-w 参数去掉命令行黑框,一般用于桌面程序。
pyinstaller -F -w test.py
-i 参数修改程序默认图标。
pyinstaller -F -i t1.ico test.py
官方文档