我正在尝试通过kaggle笔记本连接到谷歌云服务。然而,我在Kaggle notebook上得到一个属性错误。
请找到下面的代码;
PROJECT_ID = 'abc'
from google.cloud import automl_v1beta1 as automl
automl_client = automl.AutoMlClient()错误;
AttributeError: module 'google.cloud.automl_v1beta1' has no attribute 'AutoMlClient'有谁能帮我解决这个问题吗?
谢谢&致以最良好的问候
迈克尔
发布于 2020-03-31 22:11:13
我试过你的代码,但我没有得到错误。我使用了和你相同的代码:
from google.cloud import automl_v1beta1 as automl
# Create an AutoML client
client = automl.AutoMlClient()库安装好了吗?
pip install google-cloud-automlhttps://stackoverflow.com/questions/60943173
复制相似问题