Python文件转exe运行

python打包exe文件

1、如果在源环境打包可能会打包一些不必要的模块导致exe文件很大

2、建议新建虚拟环境(参考链接),安装程序python文件需要的模块

3、安装Pyinstaller

pip install -i https://pypi.douban.com/simple/ pyinstaller #豆瓣源
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyinstaller #清华源

4、cd到需要打包的文件目录 ,执行 Pyinstaller -F -w -i chengzi.ico py_word.py

指定图标和文件,回车打包

5、打开其中名为dist的文件夹,有个exe文件

Pyinstaller -F py_word.py 打包exe

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

Pyinstaller -F -w -i chengzi.ico py_word.py 打包指定exe图标打包

给大家分享一个网站,可以把其他格式图片转成ico格式:https://app.xunjiepdf.com/img2icon/

你可能感兴趣的:(python,开发语言)