Google App Engine:ImportError:没有名为pkg_resources的模块

时间:2019-06-22 18:14:26

标签: python google-app-engine google-cloud-platform

我正在尝试从2个字母的州代码中获取美国的区域名称。我在Google App Engine上看到以下代码中提到的导入错误。

import us

我正在使用python2.7谷歌应用程序引擎gcloud设置。以下是我用于部署的命令

gcloud app deploy

1 个答案:

答案 0 :(得分:2)

Setuptools是built-in third-party libraries之一。对于"Using a built-in third-party library bundled with the runtime",您是在setuptools文件中指定app.yaml吗?

libraries:
- name: setuptools
  version: "36.6.9"