"importerror: Cannot Import Name Osrng" When Importing Gcloud.storage In Google App Engine
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).
Solution 1:
You have to add pycrypto
to your libraries
in app.yaml
:
libraries:
- name: pycrypto
version: "latest"
Post a Comment for ""importerror: Cannot Import Name Osrng" When Importing Gcloud.storage In Google App Engine"