今天小编给大家分享一下python怎么生成exe文件的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。
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 好使