Google App Engine 不支持 Geopy?
Geopy not supported on Google App Engine?
我希望在 GAE 上将 geopy 与 Python 2.7 结合使用。但是,当我部署代码时出现以下错误:
appcfg.py: error: Error parsing C:\myPrograms\Google
AppEngine\Programs\Balefire\app.yaml: the library "geopy" is not
supported
我的 app.yaml 有:
libraries:
- name: webapp2
version: latest
- name: pycrypto
version: "2.6"
- name: ssl
version: latest
- name: geopy
version: latest
GAE 真的不支持这个库吗?如果支持,有哪些替代方案?
您可以在 app.yaml
中指定版本的库在 https://cloud.google.com/appengine/docs/python/tools/libraries27
中列出
geopy
不在该列表中。但是,如果 geopy
是纯粹的 python(https://github.com/geopy/geopy 似乎一目了然),则可以将其作为应用程序的一部分。
我希望在 GAE 上将 geopy 与 Python 2.7 结合使用。但是,当我部署代码时出现以下错误:
appcfg.py: error: Error parsing C:\myPrograms\Google AppEngine\Programs\Balefire\app.yaml: the library "geopy" is not supported
我的 app.yaml 有:
libraries:
- name: webapp2
version: latest
- name: pycrypto
version: "2.6"
- name: ssl
version: latest
- name: geopy
version: latest
GAE 真的不支持这个库吗?如果支持,有哪些替代方案?
您可以在 app.yaml
中指定版本的库在 https://cloud.google.com/appengine/docs/python/tools/libraries27
geopy
不在该列表中。但是,如果 geopy
是纯粹的 python(https://github.com/geopy/geopy 似乎一目了然),则可以将其作为应用程序的一部分。