经过basic Google Authentication setup之后,我现在可以在Windows 10的Powercell中通过一个简单的逗号行> python temp001.py
在以下代码中运行,该命令在云中列出了我的Google存储桶。我试图通过Spyder运行相同的代码,但是它不起作用。请问为什么?
def implicit():
from google.cloud import storage
storage_client = storage.Client()
buckets = list(storage_client.list_buckets())
print(buckets)
return 1
a=implicit()
我在Spyder中得到的是ContextualVersionConflict: (google-api-core 0.1.4 (c:\users\H42\anaconda3\lib\site-packages), Requirement.parse('google-api-core<2.0.0dev,>=1.6.0'), {'google-cloud-storage'})
。
我正在使用Windows 10和Python 3.6.3。
谢谢!