Reputation: 1
I am using Anaconda and error come when using google-api-python-client.
Error:
from apiclient.discovery import build
ImportError: No module named discovery
Upvotes: 0
Views: 773
Reputation: 1141
I also tried sudo pip install --upgrade google-api-python-client
But it didn't worked for me. Then I tried
from googleapiclient.discovery import build
instead of
from apiclient.discovery import build
It worked for me. Hope it helps.
Upvotes: 1