pip安装python包出错 pip install pyCrypto

 

 pip安装pyCrypto时报错Could not find a version that satisfies the requirement pyCrypto (from versions: )

 可能网络的问题,可以使用镜像源加速

 改为豆瓣源:

pip install pyCrypto -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

或者

pip3 install pyCrypto -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

成功安装:

猜你喜欢

转载自blog.csdn.net/cao2884388/article/details/113843957