ImportError: No module named 'google'

前端 未结 10 582
刺人心
刺人心 2020-12-05 09:35

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

10条回答
  •  执笔经年
    2020-12-05 10:03

    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
    

提交回复
热议问题