PyCharm打包exe到右键快捷菜单
附加:多个py文件生成exe方式
多py文件生成一个exe
pyinstaller -w -F main.py -p 1.py -p 2.py -p 3.py
或
pyinstaller -w -F main.py -p *.py
多py文件生成一个exe目录
pyinstaller -w main.py -p 1.py -p 2.py -p 3.py
或
pyinstaller -w main.py -p *.py
其中 -w 代表指定为GUI程序