Skip to content Skip to sidebar Skip to footer

How To Import Pycrypto Inside App Engine Development Server (os X)?

My app.yaml include this lines: libraries: - name: pycrypto version: '2.6' I have the correct version of PyCrypto: $ python >>> import Crypto >>> Crypto.__vers

Solution 1:

Because pycrypto includes native compiled code, you need to install that yourself for your Python installation. Assuming you have pip installed:

pip install pycrypto

Post a Comment for "How To Import Pycrypto Inside App Engine Development Server (os X)?"