Apache Beam Jupyter Notebook.ImportError:无法从'google.cloud'导入名称'storage'(未知位置)。ImportError: cannot import name 'storage' from 'google.cloud' (unknown location)

问题描述 投票:0回答:1

我想把存储导入到Apache Beam内核的jupyter笔记本中,但它说未知位置。如果我尝试导入其他的google-cloud库,比如bigquery或者datastore都可以,就是存储的那个失败了。

enter image description here

python-3.x google-cloud-platform google-cloud-storage jupyter apache-beam
1个回答
2
投票

我得到了同样的问题,这里是我如何解决它。

  1. 使用 pip install --upgrade google-cloud-storage
  2. 重新启动内核以使用更新的软件包

我按照上面的步骤,现在能够导入。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.