python 生成 exe 文件的方法:首先安装 pyinstaller,代码为【pip install pyinstaller】;然后使用 pyinstaller 命令打包成 exe【pyinstaller -F --icon=my.ico…】。
python 生成 exe 文件的方法:
一、安装 pyinstaller
pip install pyinstaller
二、使用 pyinstaller 命令
pyinstaller -F main.py #打包成 exe
pyinstaller -F --icon=my.ico test.py #打包成 exe,并设置图标
pyinstaller -F -w yourfilename.py #打包成 exe, 且不包含控制台
其他参数:
一般 python GUI 编程才用到 打包成 exe,讲道理不如. net 的 winform 好使
到此这篇关于关于python如何生成exe文件的文章就介绍到这了,更多相关python生成exe文件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!