I'm trying my hands on encryption for a while now. I recently got hands on this python based crypter named PythonCrypter.
I'm fairly new to Python and when I try to open the CodeSection.py file via terminal, I get error saying from Crypto.Cipher import AES
ImportError: No Module Named Crypto.Cipher
What am I doing wrong?
In my case, pycrypto package was not installed, when I tried to add it: I ran into the following error which was rectified by downloading and installing C++ Compiler for Python 2.7.
error: Microsoft Visual C++ 9.0 is required. Get it from http://aka.ms/vcpython27
In order to use the pycypto library you should install it with:
or
I just spent half an hour figuring this out on Ubuntu. Turns out, I had installed the
python-pycryptopp
package through apt (I prefer to avoid pip if possible), but the package I needed was actuallypython-crypto
.