打包 Python 程序
cxfreeze比较简单,不容易出错。 cxfreeeze有几种文件形式,msi和whl。msi是安装包直接双击运行
下载地址 http://sourceforge.net/projects/cx-freeze/files/4.3.2/
whl是python安装包,安装格式:
pip install whl文件地址
下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/
安装后cxfreeze执行脚本在python_home\Scripts下面
cxfreeze打包exe命令格式:
python cxfreeze全路径 要打包的py文件 --target-dir=
例如:
cxfreeze D:/hello.py --target-dir D:/123
#或
python cxfreeze D:/hello.py --target-dir=D:/123
具体步骤:
-
首先,下载本机器安装的python相应版本的cx_Freeze软件包 注意区分X64和X86
-
安装whl :pip install whl安装包 或 msi 双击安装
-
安装完成后,在python安装目录下的Scripts文件夹下,生成cx_freeze相关文件。
cmd,进入该文件目录,然后键入
cxfreeze –version 或者python cxfreeze –version
查看版本信息
-
新建一个python程序,例如:hello.py ; 在"C:\Python33\Scripts"目录(也就是cxfreeze命令所在的文件目录)下运行:
cxfreeze D:/hello.py –target-dir D:/123
就可以将D:/hello.py文件打包到D:/123目录下,生成hello.exe程序和相关依赖文件。
-
Enigma Virtual Box打包成单文件程序即可