可执行

使用pyinstaller打包python代码

廉价感情. 提交于 2019-12-04 14:32:15
安装: 从 http://www.pyinstaller.org/ 下载最新的pyinstaller软件包, 当前的最新版本是pyinstaller-2.0 pyinstaller-2.0.tar.bz2 tar jxvf pyinstaller-2.0.tar.bz2 python 2.0是一个可以免安装的软件包 cd pyinstaller-2.0 直接运行 python pyinstaller.py -h -F, –onefile 产生一个文件用于部署 (参见XXXXX). -D, –onedir 产生一个目录用于部署 ( 默认 ) -K, –tk 在部署时包含 TCL/TK -a, –ascii 不包含编码 . 在支持 Unicode的 python 版本上默认包含所有的编码 . -d, –debug 产生 debug 版本的可执行文件 -w,–windowed,–noconsole 使用 Windows 子系统执行 . 当程序启动的时候不会打开命令行 ( 只对 Windows 有效 ) -c,–nowindowed,–console 使用控制台子系统执行 ( 默认 )( 只对 Windows 有效 ) -s,–strip 可执行文件和共享库将 run through strip. 注意 Cygwin的 strip 往往使普通的 win32 Dll 无法使用 . -X,