python生成exe文件的方法:
一、安装 pyinstaller
pip install pyinstaller
二、使用 pyinstaller 命令
# 打包成exe,并设置图标 pyinstaller -F --icon=my.ico test.py # 打包成exe,且不包含控制台 pyinstaller -F -w yourfilename.py
一般 python GUI编程才用到 打包成exe,讲道理不如.net 的winform好使
转载:
https://m.php.cn/article/471359.html