0

I have run all commands in the terminal to clear any previous forms of crypto, but after I ran "pip3 install pycryptodome" and it successfully installed, I still cannot import the "Crypto.Cipher" module. Can anyone help?

1 Answers1

0

You should use:

pip3 uninstall crypto 
pip3 uninstall pycrypto 
pip3 install pycryptodome

All these packages get installed in the same folder so will overwrite files.

Axisnix
  • 2,822
  • 5
  • 19
  • 41