py脚本打包exe可执行文件
时间:2014-04-28 06:45:29
收藏:0
阅读:592
python3以上版本打包exe需要扩展软件:cx_freeze
1)安装后在\Python32\Scripts\cxfreeze.bat和\Python32\Scripts\cxfreeze-quickstart.bat文件中更改python实际路径,如:
C:\Python32\python.exe C:\Python32\Scripts\cxfreeze %*改为D:\Python32\python.exe D:\Python32\Scripts\cxfreeze %*
2)新建py2exe.bat,写入:
@echo off
@cd /d "%~dp0"
d:/python32/scripts/cxfreeze %1 --target-dir=d:\py2exe --base-name=win32gui
将需打包的py脚本拖入批处理即可,打包生成文件(exe文件)在target-dir即d:\py2exe下
评论(0)