用Pyinstaller建立linux下Python的独立可执行文件[原创教程]

用Pyinstaller建立linux下Python的独立可执行文件[原创教程]

以下内容假定已安装好Python 2.4/2.5

一、下载并编译pyinstaller(只需做一次,以后可直接做第二步)

1.下载pyinstaller,现在的版本是1.3
(1)wget http://pyinstaller.hpcf.upr.edu/source/1.3/pyinstaller_1.3.tar.gz

2.解包进入源码目录
(1)tar zxv pyinstaller_1.3.tar.gz
(2)cd pyinstaller-1.3/source/linux

3.编译源代码
(1)python Make.py  生成python的 .pyc文件

如无错误,则出现如下提示(只有一行):
Now run "make" to build the targets: ../../support/loader/run ../../support/loader/run_d

(2)make 连接生成linux的 .o 文件

4.生成编译配置文件
(1)python Configure.py  生成config.dat配置文件


二、编译独立运行的python可执行文件

1.生成spec文件
python pyinstaller-1.3/Makespec.py --onefile --upx linuxlaptop.py

参数说明:
--onefile 生成单文件
--upx          生成压缩的文件(可减小执行文件体积,需先安装upx软件包)


2.生成最终的可执行文件
python pyinstaller-1.3/Build.py linuxlaptop.spec

执行完成后将在当前目录生成可执行的linuxlaptop文件,如有问题欢迎与我交流:linuxlaptop.cn。

windows下的用pyinstaller也可以吗?
好东西多谢分享
+x 不好吗?

                         
windows下用pyinstaller也可以,
1.3发布好像是2006年的吧,主页上建议使用svn里面的:http://svn.pyinstaller.python-hosting.com/trunk
Fair notice: The release is outdated. You are encourage to try PyInstaller trunk from SVN at this point, until a new release comes out.
使用svn里面的,win系统下,也需要自己先编译exe。
linux下使用pyinstaller,有可能会出现“\r\n”问题。需要改下carchive.py的代码:
s = open(pathnm, 'r').read()
s = s.replace('\r\n', '\n')#增加这行