跳到主要内容

pack

# 打包exe
Pyinstaller -F setup.py

# 不带控制台的打包
Pyinstaller -F -w setup.py

# 打包指定exe图标打包
Pyinstaller -F -i xx.ico setup.py