使用python可以轻松做一个安装包,不管是windows还是linux的
zip压缩包
python setup.py bdist --format=zip
rpm包
python setup.py bdist_rpm
windows installer
python setup.py bdist_wininst
具体请参考:
http://docs.python.org/distutils/builtdist.html
除了使用python提供的setup.py,还有一个很好用,而且免费的工具pyinstaller,支持windows, linux, mac os, 32bit, 64bit:
http://www.open-open.com/lib/view/home/1326205922468
这个工具依赖pywin32,可以从下面的连接下载:
http://sourceforge.net/projects/pywin32/files/pywin32/Build%20217/
如何安装,使用可以参看:
http://docs.python.org/distutils/builtdist.html
3个命令完成一个简单的打包:
python Configure.py
python Makespec.py [--onefile] yourprogram.py
python Build.py specfile
你只需要输入你的程序入点文件,其他pyinstaller会帮你找。
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章出处,否则按侵权处理.