首页 > 解决方案 > 使用 pip 安装 pandas 时出错:找不到满足要求 numpy==1.9.3 的版本

问题描述

我正在尝试安装熊猫。当我运行:pip install pandas在 cmd 中,我收到以下错误消息:Could not find a version that satisfies the requirement numpy==1.9.3. 不知道如何解决这个问题。

标签: pandasnumpypip

解决方案


您可能安装了不同版本的 numpy,请先尝试升级numpy

pip install numpy==1.9.3 --upgrade

然后运行pip install pandas。还要检查这个github 问题。可能不支持您的 python 版本。


推荐阅读