我正在尝试为Python安装Pandas库。但是当我跑步时
python -m pip install pandas
它出错
couldn't find a version that satisfies the requirement numpy==1.9.3 (from versions:
1.10.4, 1.11.0, 1.11.1rc1, 1.11.1, 1.11.2, 1.11.3, 1.12.0b1, 1.12.0rc1, 1.12.0rc2, 1.12.0, 1.12.1rc1, 1.12.1,1.13.0rc1, 1.13.0rc2, 1.13.0, 1.13.1, 1.13.3, 1.14.0rc1, 1.14.0,
1.14.1, 1.14.2)
No matching distribution found for numpy==1.9.3
我已经安装了最新版本numpy == 1.14.2并且我还尝试卸载它然后重新安装pandas但它仍然无法正常工作。 我尝试通过运行
来安装没有依赖项的pandaspython -m pip install pandas --no-deps
但它也不起作用。 这里出了什么问题?