如何使用pyinstaller打包python文件为exe文件

如题所述

1、安装PyInstaller 3.0
(1)下载:https://pypi.Python.org/pypi/PyInstaller/3.0,2015-10-04更新;【PyInstaller-3.0.tar.gz】
(2)解压文件:【D:\PyInstaller3.0】;
(3)命令提示符进入到PyInstaller3.0文件夹内,输入命令:python setup.py install
或者:在命令提示符中输入:pip install pyinstaller
如果已经安装好,会有下图提示:

(4)输入命令:pip list,可以查看python所有安装的包及版本;

2、将py文件打包成exe文件
(1)在【D:\PyInstaller3.0】目录下新建文件夹【myexe】,将py文件放入其中;
(2)命令提示符进入到myexe文件夹;
(3)命令提示符输入:pyinstaller -F 文件名.py;注意空格和大小写;【例如pyinstaller -F mytest.py】
(4)在文件夹内将生成若干文件,其中exe文件在dist文件夹中。

3、其他参数:输入命令pyinstaller -h查看。
4、尝试过的命令:
(1)【pyinstaller -w mytest.py】,生成exe文件在运行时,不会弹出CMD窗口;
(2)【pyinstaller --icon=D:\PyInstaller3.0\myexe\icon\myicon.ico -F mytest.py】,可为exe文件生成图标。
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答