python pip安装包失败
Posted SongChunMin_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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/yao1373446012/article/details/96880191
以上是关于python pip安装包失败的主要内容,如果未能解决你的问题,请参考以下文章
python安装sklearn-contrib-py-earth包实战:pip和conda安装失败手动下载whl文件安装实战