Openthread: ModuleNotFoundError: No module named 'Crypto'

Created on 9 May 2019  路  2Comments  路  Source: openthread/openthread

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

Annotation 2019-05-09 190903
from Crypto.PublicKey import RSA
ModuleNotFoundError: No module named 'Crypto'

question

Most helpful comment

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.

All 2 comments

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

Was this page helpful?
0 / 5 - 0 ratings

Related issues

seriph picture seriph  路  4Comments

LuDuda picture LuDuda  路  4Comments

beriberikix picture beriberikix  路  6Comments

simonlingoogle picture simonlingoogle  路  4Comments

jwhui picture jwhui  路  6Comments