This is not a duplicate. My scenario is a bit different and I could not find a solution from similar posts here. I installed Python 3.5. I ran the pip install google comman
I figured out the solution:
Anaconda/Scripts
pip install google
No more errors.
got this from cloud service documentation
pip install --upgrade google-cloud-translate
Worked for me !
Use this both installation and then go ahead with your python code
pip install google-cloud
pip install google-cloud-vision
I could fix it by installing the following directly.
pip install google.cloud.bigquery
pip install google.cloud.storage
I found a similar error when i tried to access the bigquery from google.cloud.
from google.cloud import bigquery
Error was resolved after i install the google.cloud from conda-forge community.
conda install -c conda-forge google-cloud-bigquery
According to https://developers.google.com/api-client-library/python/apis/oauth2/v1 you need to install google-api-python-client package:
pip install --upgrade google-api-python-client