ModuleNotFoundError: No module named 'Crypto'
iridesc opened this issue · 2 comments
iridesc commented
File "/usr/local/python3/lib/python3.9/site-packages/aes_everywhere-1.2.8-py3.9.egg/AesEverywhere/aes256.py", line 32, in
from Crypto import Random
ModuleNotFoundError: No module named 'Crypto'
iridesc commented
i fix it temportly by install pycryptodomex
and modified you package by
replace
from Crypto import Random
from Crypto.Cipher import AES
to
from Cryptodome import Random
from Cryptodome.Cipher import AES
waiting for you to fix it in the next version!
mervick commented
Fixed