如何在 python 3.5.2 上安装 google cloud sdk
How to install google cloud sdk on python 3.5.2
我正在按照指南安装 google cloud sdk。但是当我使用语句
from google.appengine.ext import ndb
我收到错误消息,没有名为 google.apengine.ext 的模块。我认为这是由于我的 google cloud sdk 没有安装在 Python 3.5 中。所以我的问题是如何在 Python 3.5 中安装该软件包。有没有可能将它安装在虚拟环境中?
ndb
客户端库仅在 Python 2.7 应用程序的标准环境中受支持。来自 Using the ndb client library:
The ndb client library is not compatible with the Python 3.7 runtime.
For more information, see differences between the Python 2.7 and
Python 3.7 runtimes on the App Engine standard environment.
我正在按照指南安装 google cloud sdk。但是当我使用语句
from google.appengine.ext import ndb
我收到错误消息,没有名为 google.apengine.ext 的模块。我认为这是由于我的 google cloud sdk 没有安装在 Python 3.5 中。所以我的问题是如何在 Python 3.5 中安装该软件包。有没有可能将它安装在虚拟环境中?
ndb
客户端库仅在 Python 2.7 应用程序的标准环境中受支持。来自 Using the ndb client library:
The ndb client library is not compatible with the Python 3.7 runtime. For more information, see differences between the Python 2.7 and Python 3.7 runtimes on the App Engine standard environment.