How can I upload a file to Google Cloud Storage from Python 3? Eventually Python 2, if it\'s infeasible from Python 3.
I\'ve looked and looked, but haven\'t found a
When installing Google Cloud Storage API:
pip install google-cloud
will throw a ModuleNotFoundError:
ModuleNotFoundError
from google.cloud import storage ModuleNotFoundError: No module named 'google'
Make sure you install as in Cloud Storage Client Libraries Docs:
pip install --upgrade google-cloud-storage