无法安装 Pandas!帮助! (点安装 pandas)
Cannot get Pandas to install ! Help! (pip install pandas)
我正在尝试安装 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
我应该怎么做才能解决这个问题?
我很确定这是一个编译器错误,所以请尝试在系统上安装 g++
如果您正在处理 linux,运行 这个。
sudo apt-get install g++
或者如果您有 CentOS 系统,您可能需要安装 gcc
、gcc-c++
$ yum install gcc gcc-c++
然后使用 pip
安装 pandas
$ pip install pandas
我正在尝试安装 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
我应该怎么做才能解决这个问题?
我很确定这是一个编译器错误,所以请尝试在系统上安装 g++
如果您正在处理 linux,运行 这个。
sudo apt-get install g++
或者如果您有 CentOS 系统,您可能需要安装 gcc
、gcc-c++
$ yum install gcc gcc-c++
然后使用 pip
pandas
$ pip install pandas