Skip to content Skip to sidebar Skip to footer

Module Google_auth_httplib2 Not Found After Pip Installing Google-cloud How Can I Fix It?

I used pip to install cloud-storage, like this: $ pip install --upgrade google-cloud When I started my application, I got an error that said no module named google_auth_httplib2 w

Solution 1:

I just solved the problem, I'll leave the answer just in case anyone else runs into it. I created a folder named google-cloud in lib and used pip:

pip install google-cloud -t [my_project]/lib/google-cloud

And then in appengine_config.py I added:

from google.appengine.ext import vendor

vendor.add('lib/google-cloud')

Post a Comment for "Module Google_auth_httplib2 Not Found After Pip Installing Google-cloud How Can I Fix It?"