操作系统:win8-64位
python版本:3.5
pyInstaller版本:3.2(下载地址:http://www.pyinstaller.org/)
pywin32版本:pywin32-219.win-amd64-py3.5
打包步骤:
1、安装pywin32
2、解压缩pyInstaller的zip包到任何目录,我的解压目录是:C:\Program Files\Python35\PyInstaller-3.2
3、在cmd窗口,cd C:\Program Files\Python35\PyInstaller-3.2目录,执行命令:python3 setup.py install(安装pyInstaller)
4、将py文件放到任何目录,我的目录是:C:\Program Files\Python35\PyInstaller-3.2\002.py
5、在cmd窗口,cd C:\Program Files\Python35\PyInstaller-3.2目录,执行命令:python3 pyinstaller.py -F 002.py
6、exe打包成功后,在C:\Program Files\Python35\PyInstaller-3.2\002\dist\002.exe目录可看到
参考资料:http://m.blog.csdn.net/article/details?id=52242112
============================================================================
操作系统:win8-64位
python版本:2.7
pyInstaller版本:2.0
pywin32版本:pywin32-219.win32-py2.7
打包步骤:
1、安装pywin32
2、解压缩pyInstaller的zip包到任何目录,我的解压目录是:C:\Python27\pyinstaller-2.0
3、将py文件放到任何目录,我的目录是:C:\Python27\pyinstaller-2.0\002.py
4、在cmd窗口,cd C:\Python27\pyinstaller-2.0目录,执行命令:python pyinstaller.py -F 002.py
5、exe打包成功后,在C:\Python27\pyinstaller-2.0\002\dist\002.exe目录可看到