webService接口的py文件打包成exe
Posted 上田园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webService接口的py文件打包成exe相关的知识,希望对你有一定的参考价值。
(一)webService接口的py文件打包成exe,在python3.5版本、pyInstaller3.2版本、pywin32-219.win-amd64-py3.5版本打包时报错,原因可能是pyinstaller.py文件使用python2语法写的代码。
(二)webService接口的py文件打包成exe,在python2.7版本、pyInstaller2.0版本、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目录可看到
6、成功运行exe
以上是关于webService接口的py文件打包成exe的主要内容,如果未能解决你的问题,请参考以下文章