我已经开发了python烧瓶应用程序(REST)。现在,我想在客户端系统(Windows 10 Professional )上部署此应用程序。我的客户没有任何互联网服务。
在此之前,我在java中完成了创建一个.war文件,并在客户端系统上部署到tomcat中。他能够访问REST。
现在我想知道在客户端系统上部署python应用程序的类似方法,在start系统上,他能够访问我的REST。
发布于 2019-12-23 07:30:08
使用PyInstaller。
pip install pyinstaller转到dir项目
cd C:\Users\sandip\Desktop\MyPython使用
pyinstaller --onefile HelloFlask.pyhttps://stackoverflow.com/questions/57950177
复制相似问题