python安装pandas报错,version问题看这里!!!

python安装pandas报错

python安装pandas时报错,报错信息为:

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

原因:
电脑里面同时存在着两个版本,python2以及python3,在安装pandas时无法找到对应的版本

解决办法:指定版本号
py -2 -m pip install pandas或
py -3 -m pip install pandas
由于我经常使用的是3,所以我所输入的是py -3 -m pip install pandas
但是不知道为什么这个会报错,报错信息还是无法找到版本
在这里插入图片描述

于是我输入了下面的语句:
py -3 -m pip install pandas -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
结果安装成功,如图所示:
python安装pandas报错,version问题看这里!!!_第1张图片
操作步骤:打开cmd,输入py -3 -m pip install pandas -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com即可。

你可能感兴趣的:(python,数据处理,python,pandas)