Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot get Pandas to install ! Help! (pip install pandas)

I'm trying to install Pandar but I can't get pandas to install on my linux Centos 6.4.

Running pip install pandas leads to this error:

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

What should I do to fix this?

like image 686
Filip Korngut Avatar asked Feb 07 '15 00:02

Filip Korngut


1 Answers

Im pretty sure thats a compiler error, so try installing g++ on the system

if you are working on linux, run this.

sudo apt-get install g++
like image 145
Ethaan Avatar answered Oct 19 '22 03:10

Ethaan