Python GUI(2)打包成exe程序

Python GUI(2)打包成exe程序

安装库pyinstaller

pip install pyinstaller

代码程序

  • favicon.ico 放在目录下,
pyinstaller.py
import os if __name__ == '__main__': from PyInstaller.__main__ import run opts=['program_class.py','-w','--icon=favicon.ico'] run(opts)
notion image
 
exe程序在dist对应的目录下,点击即可运行程序。
notion image