当我尝试安装pandas时,我收到此错误:
无法找到满足要求numpy == 1.9.3的版本(版本:1.10.4,1.11.0,1.11.1rc1,1.11.1,1.11.2rc1,1.11.2,1.11.3, 1.12.0b1,1.12.0rc1,1.12.0rc2,1.12.0,1.12.1rc1,1.12.2,1.13.0rc1,1.13.0rc2,1.13.0,1.13.3,1.13.3,1.13.0rc1,1.14。 0,1.14.1,1.14.2,1.14.3)
的匹配分布
找不到numpy == 1.9.3
我用
pip install pandas
和
python -m pip install pandas
在这两种情况下,我都会遇到同样的错误。 感谢。
答案 0 :(得分:0)
您可以更新pip
并重试。 pip
的最新版本为 10.0.1 。
python -m pip install --upgrade pip
答案 1 :(得分:0)
您患有某种版本性(不同软件的版本彼此不兼容)。如果运行的是Python <3.4,则可能是原因,因为Pandas不再支持Python <3.4。 See this SO thread。
我在运行python 3.7和pandas 0.23的Mac OS上看到了此问题。我降级到python 3.6和pandas 0.22,这解决了我的问题。