I have installed Crypto using pip, but it still shows this error

from Crypto.PublicKey import RSA
ModuleNotFoundError: No module named 'Crypto'
This question was also raised in #1137.
You need to install pycryptodome version 3.4.3:
$ pip install pycryptodome==3.4.3
You also need to uninstall pycrypto to avoid the name collision - both pycrypto and pycryptodome have a Crypto module.
okay will check this
Most helpful comment
This question was also raised in #1137.
You need to install pycryptodome version 3.4.3:
You also need to uninstall
pycryptoto avoid the name collision - bothpycryptoandpycryptodomehave aCryptomodule.