Google应用引擎没有名为appengine.api的模块

时间:2017-06-14 11:42:00

标签: python google-app-engine

部署python app引擎项目。 它在我在虚拟环境中本地部署时有效,但在部署到谷歌应用引擎时,我收到错误(在终端中):

from google.appengine.api import memcache
ImportError: No module named appengine.api

我可以导入谷歌,但我无法导入google.appengine或其中的任何内容。

我的app.yaml

runtime: python
env: flex
entrypoint: gunicorn -b :$PORT main:app

runtime_config:
  python_version: 2
threadsafe: true
- url: /.*
  script: main.app
  secure: always

requirements.txt

Flask==0.12.1
gunicorn==19.7.1
numpy==1.12.1
scipy==0.19.0
Pillow==4.1.1
scikit_learn==0.17
python-dateutil
webapp2==3.0.0b1
google-cloud-storage==1.1.1
pycrypto==2.6
google-api-python-client==1.5.0

如何解决此问题?

编辑: 附加信息: Google Cloud SDK 158.0.0 app-engine-python 1.9.54 从macOS部署

0 个答案:

没有答案