$ pip install future
PyInstaller安装
-
下载地址:http://www.pyinstaller.org/wiki
2 -
最新版本:PyInstaller 2.0
-
直接“解压缩”之后即可使用,解压到您想让他在的路径即可
PyInstaller配置
-
事先写好py程序
-
在命令行执行:Python Makespec.py --console --onefile NotePad otepad.py
报错:Configfile is missing or unreadable. Please run Configure.py before building
-
在命令行执行:Configure.py
报错:Python 2.6+ on Windows support needs pywin32,Please install http://sourceforge.NET/projects/pywin32/
-
安装最新版本的 pywin32-217.win32-py2.7.exe,下载地址:http://sourceforge.Net/projects/pywin32/files/pywin32/Build%20217/
python pyinstaller.py [opts] yourprogram.py
主要选项包括:
-F, -onefile 打包成一个exe文件
-D, -onedir 创建一个目录,包含exe文件,但会依赖很多文件(默认选项)
-c, -console, -nowindowed 使用控制台,无界面(默认)
-w, -windowed, -noconsole 使用窗口,无控制台