I have installed gcloud on my machine and it works correctly.
When deploying to Google App Engine, I install all requirements to lib (pip install -t lib -r requirements.txt
).
I have installed gcloud on my machine and it works correctly.
When deploying to Google App Engine, I install all requirements to lib (pip install -t lib -r requirements.txt
).
You have to add pycrypto
to your libraries
in app.yaml
:
libraries:
- name: pycrypto
version: "latest"