CustomCryptocurrency icon indicating copy to clipboard operation
CustomCryptocurrency copied to clipboard

No module named 'Crypto'

Open crazyRM opened this issue 3 years ago • 10 comments

ModuleNotFoundError: No module named 'Crypto'

iv check everywhere for a fix and cant find one please help!

crazyRM avatar Apr 26 '21 09:04 crazyRM

Hey there, sorry, I've had a lot of projects and not been able to look into this yet.

LinuxUser255 avatar Apr 26 '21 17:04 LinuxUser255

I do have some related, Blockchain Python code that I can share

LinuxUser255 avatar Apr 26 '21 17:04 LinuxUser255

just created a private repo and invited you to it

LinuxUser255 avatar Apr 26 '21 18:04 LinuxUser255

just created a private repo and invited you to it

i dident get the invite

crazyRM avatar Apr 27 '21 00:04 crazyRM

Invite resent. in the terminal use pip to install modules you don't have. AES should take care of the crypto mod pip3 install aes -or- just pip3 install crypto see this link https://pypi.org/project/crypto/

LinuxUser255 avatar Apr 27 '21 01:04 LinuxUser255

ModuleNotFoundError: No module named 'Crypto'

iv check everywhere for a fix and cant find one please help!

use pip install pycrypto

Avinask0 avatar May 09 '21 15:05 Avinask0

I have the same problem even after I installed crypto with "pip install crypto"

alibizhan avatar May 13 '21 18:05 alibizhan

I have the same problem even after I installed crypto with "pip install crypto"

It's pycrypto

Avinask0 avatar May 14 '21 03:05 Avinask0

pyCrypto is dead (rip) I guess, use PyCryptodome

moughamir avatar May 26 '21 03:05 moughamir

ModuleNotFoundError: No module named 'Crypto'

iv check everywhere for a fix and cant find one please help!

You should use PyCrypto as that is the library that he uses. The import is deceiving.

pip3 install pycrypto

NTechStorm avatar Jul 16 '21 22:07 NTechStorm