python pip安装包失败

 一、无法找到满意版本

Could not find a version that satisfies the requirement pandas (from versions: )
No matching distribution found for pandas

解决方案:升级pip

python -m pip install --upgrade pip

升级一下pip ,--upgrade 后面跟的是需要升级的库名

二、 Read timed out.
网络问题,当网不稳定,或者网速较慢时会报错

解决方案:用国内的镜像源来加速

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

例如:安装pandas,可使用以下命令: pip install pandas -i http://pypi.douban.com/simple/ --trusted-host pypi.douba
n.com

--trusted-host pypi.douban.com 这是为了获得ssl证书的认证

以上是手动指定镜像源,也可通过添加配置文件,自动指定:

参考博客:

https://blog.csdn.net/u012592062/article/details/51966649

你可能感兴趣的:(Python)