解决 ERROR Could not find a version that satisfies the requirement xxx 的问题

解决 ERROR: Could not find a version that satisfies the requirement xxx 的问题

今天自己在安装kaggle(其他包安装错误也是适用的)时,突然报了以下错误:

在这里插入图片描述

意思就是找不到一个适合你需求的版本,到底是什么导致这个原因呢?

原因:python国内网络并不是很稳定,直接导致报错。

那我们怎么解决呢?

我们常用镜像源来解决此问题,将下载的指令更改为如下:

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

更改完之后下载如下:
解决 ERROR Could not find a version that satisfies the requirement xxx 的问题_第1张图片

成功解决!!!!

你可能感兴趣的:(python)