0

I got this error in Google App Engine's Python, But I don't know how to fix,

I added into my project directory the following folders:

apiclient, gflags, httplib2, oauth2client, uritemplate

but I got always the same error

  • Probably this could help: http://stackoverflow.com/questions/18267749/importerror-no-module-named-apiclient-discovery – Konstantinos G May 09 '16 at 14:03
  • If the solution provided by @KonstantinosG has helped you, please post it as the answer to this question as a reference to the rest of the community. – Jordan Jan 09 '17 at 21:07
  • 3
    Possible duplicate of [ImportError: No module named apiclient.discovery](http://stackoverflow.com/questions/18267749/importerror-no-module-named-apiclient-discovery) – nobody Jan 16 '17 at 15:16

1 Answers1

0

This is a Community Wiki post of Jorvis' answer

The apiclient.discovery service is a part of the Google API Client Library. You can therefore install the Client Library using the provided command (e.g for Python):

pip install --upgrade google-api-python-client

This will solve the 'No module named ...' warning for any of the supported APIs.

Community
  • 1
  • 1
Jordan
  • 693
  • 3
  • 16
  • Do not duplicate answers (even as CW). If that answer answers this question, then this question should be flagged/voted for closure as a duplicate. – nobody Jan 16 '17 at 15:18