标签:style blog http color 使用 ar for 文件 div
优点:
1. pyinstaller 是跨平台的可以用在linux和windows系统上
2. 操作非常简单,几个命令就搞定了,这个比py2exe容易用多了
缺点:
1. 打包后的体积过大,因为要带python.dll库,所以没有办法
2. 不能和tkinter 等库,打包成单独一个文件
1、下载pyinstaller
目前pyinstaller支持的python版本为2.3-2.7,可以到http://www.pyinstaller.org/官网下载。
2、安装
下载完成后,解压即可。
3、pyinstaller使用方法
使用也非常的简单,cmd下进入解压出来的目录,执行如下命令。
python pyinstaller.py [opts] yourprogram.py
主要选项包括:
-F, –onefile 打包成一个exe文件。 -D, –onedir 创建一个目录,包含exe文件,但会依赖很多文件(默认选项)。 -c, –console, –nowindowed 使用控制台,无界面(默认) -w, –windowed, –noconsole 使用窗口,无控制台
-X 用upx给程序加壳
如:
python pyinstaller.py -F -c -X aaa.py
注意:如果提示要安装pywin32,则到http://sourceforge.net/projects/pywin32/files/pywin32/下载安装即可。
用pyinstaller把python代码打包成exe可执行文件
标签:style blog http color 使用 ar for 文件 div
原文地址:http://www.cnblogs.com/goodhacker/p/3950158.html