首页 > 解决方案 > ImportError:没有名为 flask_restful 的模块

问题描述

我正在尝试部署 appengine flex python 应用程序,但在部署后在 Stackdriver 日志 stderr 中获得以下内容

  File "/env/local/lib/python2.7/site-packages/gunicorn/arbiter.py", line 578, in spawn_worker
    worker.init_process()
  File "/env/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 126, in init_process
    self.load_wsgi()
  File "/env/local/lib/python2.7/site-packages/gunicorn/workers/base.py", line 135, in load_wsgi
    self.wsgi = self.app.wsgi()
  File "/env/local/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi
    self.callable = self.load()
  File "/env/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load
    return self.load_wsgiapp()
  File "/env/local/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp
    return util.import_app(self.app_uri)
  File "/env/local/lib/python2.7/site-packages/gunicorn/util.py", line 352, in import_app
    __import__(module)
  File "/home/vmagent/app/my_service/entry_point.py", line 5, in <module>
    import flask_restful as restful
ImportError: No module named flask_restful

第 5 行的 entry_point.py 有

import flask_restful as restful

我的requirement.txt有

Flask-RESTful==0.3.6
gunicorn==19.7.1

不知道为什么它还在抱怨 Flask-Restful

标签: pythongoogle-app-enginegoogle-app-engine-pythonapp-engine-flexible

解决方案


ImportError:没有名为 flask_restful 的模块

似乎您没有安装flask_restful,要安装运行:

pip install flask-restful

在您的终端中,然后运行您的应用程序。

文档:https ://flask-restful.readthedocs.io/en/latest/installation.html


推荐阅读