python的pycrypto库的安装

pycrypto,pycrytodome和crypto是一个东西,crypto在python上面的名字是pycrypto它是一个第三方库,但是已经停止更新三年了,所以不建议安装这个库;

python2下安装:

pip install pycrypto

python3下安装

pip install pycryptodome

pycryptodome是pycrypto的延伸版本,用法和pycrypto 是一模一样的
但是,在使用的时候导包是有问题的,这个时候只要修改python的site-packages下的一个文件夹的名称就可以完美解决这个问题
…Python36\Lib\site-packages

找到这个路径,下面有一个文件夹叫做crypto,将c改成C,对就是改成大写就ok了!!!
导包:

from Crypto.Cipher import AES

注:

如果在安装了pycrypto下,又安装了pycryptodome,请卸载他们两个,再安装pycryptodome

pip3 uninstall pycrypto
pip3 uninstall pycryptodome
pip3 install pycryptodome

你可能感兴趣的:(python)