其他分享
首页 > 其他分享> > pip install pycrypto 出错解决办法

pip install pycrypto 出错解决办法

作者:互联网

一. pip install pycrypto报错

 

 

 

二、解决办法

提示缺少依赖,需要安装VS。

为了解决这个问题,我们可以到这个网站:http://www.voidspace.org.uk/python/modules.shtml#pycrypto  下载编译好的PyCrypto包直接双击执行安装即可。

但是python3.8又找到不到对应版本。网上查了一番得知PyCrypto已经不再用了,建议用PyCryptodome,如下地址中已说明:

https://github.com/sfbahr/PyCrypto-Wheels

安装PyCryptodome:

1.升级pip

2.pip安装,如下二选一即可:

pip install pycryptodome

pip3 install -i https://pypi.douban.com/simple pycryptodome

安装好后检查Lib\site-packages目录,可看到Crypto

 

标签:install,pycrypto,https,PyCrypto,pip,安装
来源: https://www.cnblogs.com/SomnusWho/p/14613219.html