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 o
pip uninstall Crypto
pip uninstall pycrypto
pip install pycrypto
That works for me.
The point is, when you install pycrypto
, you should remove Crypto
first
In order to use the pycypto library you should install it with:
pip install pycrypto
or
easy_install pycrypto
In ubuntu 18.04.2 LTS installing pycryptodome package resolved the issue