问题
I am just starting to explore Python. I am trying to run an AES algorithm code and I am facing the:
ImportError: No module named Crypto.
How do you solve this?
回答1:
You have to install crypto package. https://pypi.python.org/pypi/pycrypto
回答2:
Solution:
By installing pycrypto module from your virtualenv
pip install pycrypto
回答3:
Solved when i installed pycrypto rather then crypto
pip2 install pycrypto
来源:https://stackoverflow.com/questions/30738083/importerror-no-module-named-crypto