所以,我尝试学习如何使用 GAE,所以我使用来自 Github 的应用程序模板来制作一个测试应用程序。
一切正常,但是现在当我想开始开发我的真正应用程序时……
运行后出现此错误gcloud app deploy
:
ERROR: (gcloud.app.deploy) Service [default] uses unsupported Python 2.5 runtime. Please use [runtime: python27] instead.
早期的应用程序必须使用 Python 27,但我想使用 Python 3。
但是,我找不到更改默认服务运行时的方法。
有什么办法可以做到这一点吗?如果没有,我该怎么办?
答案1
要运行 Python3 应用程序,请在 app.yaml 文件中使用以下内容:
runtime: python37
有关在 App Engine Standard 上运行 Python 3 的更多信息,请参见此处: https://cloud.google.com/appengine/docs/standard/python3/runtime