【Python】.py程序转换成.exe可执行程序
Python是一个强大的工具,可惜不是每个人的计算机里面都有安装。当您写了一个好用的工具。要如何让那些没有安装Python的人使用你的工具呢?
对于这样一个需要standalone exectuable环境的需求,直到撰写为止,只看到两个比较好用且有持续维护的套件。一个是py2exe。另外一个就是要介绍的PyInstaller。
PyInstaller安装
- 01
下载地址:http://www.pyinstaller.org/wiki
- 02
最新版本:PyInstaller 2.0
- 03
直接“解压缩”之后即可使用,解压到您想让他在的路径即可
PyInstaller配置
- 01
事先写好py程序
- 02
在命令行执行:python Makespec.py --console --onefile NotePad\notepad.py 报错:Configfile is missing or unreadable. Please run Configure.py before building
- 03
在命令行执行:Configure.py 报错:Python 2.6+ on Windows support needs pywin32,Please install http://sourceforge.net/projects/pywin32/
- 04
安装最新版本的 pywin32-217.win32-py2.7.exe,下载地址:http://sourceforge.net/projects/pywin32/files/pywin32/Build%20217/
PyInstaller使用
- 01
命令行中运行
- 02
目录切换到PyInstaller的安装目录“E:\pyinstaller-1.5\pyinstaller-1.5>”
- 03
在PyInstaller的安装目录下新建一个文件夹(比如NotePad), 然后将要转换的py脚本放到文件夹里(notepad.py)
- 04
E:\pyinstaller-1.5\pyinstaller-1.5>python Makespec.py --console --onefile NotePad\notepad.py
- 05
E:\pyinstaller-1.5\pyinstaller-1.5>python Build.py NotePad\notepad.spec
- 06
验证exeE:\pyinstaller-1.5\pyinstaller-1.5> E:\pyinstaller-1.5\pyinstaller-1.5\NotePad\dist\notepad.exe 0 0 100(成功)
- 07
查看生成的文件,生成的中间文件spec
- 08
查看生成的文件,生成的最终文件exe