from Crypto.Cipher import AES error

Solution: Install a lower version of Crypto, such as 1.3.3, as shown below;

Reason for the error: The default downloaded Crypto is the latest version 1.4.1, and you can open its internal file about the aes module. In fact, there is no code, so we can install the old version.

Guess you like

Origin blog.csdn.net/marujie123/article/details/130458168