OneDrive icon indicating copy to clipboard operation
OneDrive copied to clipboard

Error in code on Ubuntu 24.04

Open 3gmgithub opened this issue 8 months ago • 2 comments

Error in code on Ubuntu 24.04

python3 odl.py -h
Traceback (most recent call last):
  File "/home/jarendt/temp/tmp/logs/odl.py", line 53, in <module>
    from Crypto.Cipher import AES
ModuleNotFoundError: No module named 'Crypto'

I resolved by changing:

From:

from Crypto.Cipher import AES
from Crypto.Util.Padding import pad, unpad

To:

from Cryptodome.Cipher import AES
from Cryptodome.Util.Padding import pad, unpad

3gmgithub avatar May 20 '25 15:05 3gmgithub