I wanted to deploy my app engine to use machine learning engine in Gcloud with the following code: https://github.com/novinfard/temp
I encountered a strange error as follows:
ImportError: No module named oauth2client.client
However this library have already installed in app engine, as the following upgrade command return that everything is updated:
sudo pip install --upgrade google-api-python-client
I applied the 'vendor' solutions as described here as well: https://stackoverflow.com/a/44011777/3477974
But this does not work either.
How this problem can be solved?