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?
Asked
Active
Viewed 549 times
0
-
What happens when you try to import it? Are you installing it to the same environment that you're running code in? – Random Davis Jan 11 '21 at 18:36
1 Answers
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