No module named : ‘Crypto’

Raj Parmar
1 min readAug 7, 2020

--

You are getting this type of error because there is collision between two modules .


File "C:\user\admin\desktop\smartcart\Paytm\Checksum.py", line 7, in <module>
from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'

YOU JUST NEED TO DO THIS THINGS:-

  1. pip uninstall crypto
  2. pip uninstall pycryptodome
  3. pip install pycryptodome

That’s it……BOOM

i’m 99% sure u will not get this error again .

Don’t forget to clap for this .

THANK YOU !!!!!

--

--