pandas包的安装和Could not find a version that satisfies|9
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas包的安装和Could not find a version that satisfies|9相关的知识,希望对你有一定的参考价值。
报错
首先我尝试了在cmd窗口运行:会出现Exception异常(爆出一堆红字)。后来考虑是权限问题,采用管理员身份开启cmd,以下任选一个命令输入:
pip install pandas
python -m pip install pandas
报错:ERROR: Could not find a version that satisfies the requirement pandas (from versions: none);ERROR: No matching distribution found for pandas
由于我本机安装了python2和python3,pip在这时难以决断符合的版本,就连使用python -m指定当前版本依然不行,所以必须声明清楚是使用哪个解释器的pip:
执行:
py -3 -m pip install pandas
表示指定使用python3的pip,同理-2参数表示使用python2的pip。
换源:
py -3 -m pip install pandas -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
出现Successfully installed的提示则说明安装成功。
以上是关于pandas包的安装和Could not find a version that satisfies|9的主要内容,如果未能解决你的问题,请参考以下文章
Could not find a version that satisfies the requtrement pandas
sts安装出现could not find jar:file解决办法
Tensorflow安装问题: Could not find a version that satisfies the requirement tensorflow
maven出现Dependency not found 和Could not find artifact的解决方法(已解决)