Reputation: 285
I installed google-cloud for python by using the following command:
sudo easy_install google-cloud
The client got installed sucessfully, but now when I run the script it gives me the following error:
Traceback (most recent call last):
File "coreAPI.py", line 8, in <module>
from google.cloud import bigquery
ImportError: No module named cloud
Why does this error occur? Isn't easy install meant to install the cloud module?
Upvotes: 2
Views: 3848