无法安装Pandas!救命! (pip安装熊猫)

时间:2015-02-07 00:53:27

标签: python linux pandas centos pip

我正在尝试安装Pandar,但我无法在我的Linux Centos 6.4上安装pandas。

正在运行pip install pandas会导致此错误:

gcc: error trying to exec 'cc1plus': execvp: No such file or directory
error: command 'gcc' failed with exit status 1

我该怎么做才能解决这个问题?

2 个答案:

答案 0 :(得分:6)

我很确定这是一个编译错误,所以尝试在系统上安装g++

如果你正在使用linux,请运行它。

sudo apt-get install g++

答案 1 :(得分:0)

或者如果您有CentOS系统,则可能需要安装gccgcc-c++

$ yum install gcc gcc-c++

然后使用pandas

安装pip
$ pip install pandas