一起使用Google Cloud Client Library和Google App Engine SDK

时间:2016-11-17 16:40:44

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

我正在尝试在Google App Engine上使用Google Cloud Client Library。但是,Cloud Client Library和App Engine SDK使用CREATE TABLE wp_locations ( `id` INT(11) NOT NULL AUTO_INCREMENT, `city` VARCHAR(255) NOT NULL, `name` VARCHAR(255) NOT NULL, CONSTRAINT `city_name` UNIQUE (`city`, `name`) ) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; 作为导入名称,并且存在命名冲突。我如何让他们一起工作?

当我尝试导入Google Cloud Client Library模块时,出现以下错误:

google

发生此导入错误的原因是因为已从App Engine SDK导入了名称 >> import google.cloud.datastore Traceback (most recent call last): File "<console>", line 1, in <module> File "C:\[...]\libs\google\cloud\datastore\__init__.py", line 52, in <module> from google.cloud.datastore.batch import Batch ImportError: No module named cloud.datastore.batch 。这可以通过运行命令来确认:

google

请注意,该路径指向SDK。

有关如何解决此名称冲突的任何想法?

0 个答案:

没有答案