Search code examples
google-app-enginegoogle-app-engine-python

Syntax Error in google-api-python-client


While attempting to follow the Appengine quickstart the following error message appears:

httplib2/__init__.py", line 352 print('%s:' % h, end=' ', file=self._fp) ^ SyntaxError: invalid syntax


Solution

  • When installing google-api-python-client, the following is recommended:

    pip install -t lib google-api-python-client

    If this command is used in an enviornment running python 3, the lib installed copy will fail.
    Better to explicily state pip2:

    pip2 install -t lib google-api-python-client