GCloud Upload httplib2.RedirectMissingLocation: Redirected but the response is missing a Location: header

后端 未结 4 1608
予麋鹿
予麋鹿 2021-01-17 18:48

I am attempting to upload a small file to gcloud using a simple python program

client = storage.Client(project=GCLOUD_PROJECT)
bucket = client.get_bucket(GCL         


        
4条回答
  •  臣服心动
    2021-01-17 19:26

    I solved this problem with:

    pip install httplib2==0.15.0
    
    pip install google-api-python-client==1.6
    

    Edit: faster on load is: pip install httplib2==0.15.0 pip install google-api-python-client==1.7.11

提交回复
热议问题