I installed Anaconda with python 2.7.7. However, whenever I run \"import pandas\" I get the error: \"ImportError: C extension: y not built. If you want to impo
\"ImportError: C extension: y not built. If you want to impo
I was having this problem with python 2.7.13 here is my solution: 1. install Cython with
pip install Cython
2. install g++ and gcc
apt-get install gcc, g++
3. uninstall pandas
pip uninstall pandas
4. reinstall pandas
pip install pandas
then everything will be OK.