我目前正在尝试使用Python在Google云端存储中创建存储桶,以及Google在此链接提供的文档。
https://cloud.google.com/storage/docs/gspythonlibrary
我已按照说明操作,并且已成功安装独立的gsutil。但是,一旦我进入eclipse并导入gcs_oauth2_boto_plugin,它就无法识别它,即使它识别导入boto。
答案 0 :(得分:0)
这是我的PYTHON PATH和Eclipse的问题。我最终做的是
import sys
sys.path.append("/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages")
try:
import boto
from boto import connect_gs
except:
print 'neither of the modules were imported'
这解决了我的问题。更新python路径没有。