Skip to content
This repository has been archived by the owner on Nov 1, 2021. It is now read-only.

Installing pandas

Eli edited this page Aug 31, 2015 · 1 revision

##Summary

Pandas, at least for me, was a little rough to install so here's my experience installing it on both Windows and OpenSUSE.

##Windows:

  1. For windows you need to download the pandas distribution for your system (32bit or 64bit) from this website:
> <http://www.lfd.uci.edu/~gohlke/pythonlibs/#pandas>
  1. Install using pip
`$pip install <downloaded pandas package>`
  1. If you run into problems make sure you have installed the correct versions of numpy and cython

##Linux (OpenSUSE):

  1. For linux it is safe to just install from pip using:

    $pip install pandas

  2. If you're like me however, you're probably receiving this error:

    pandas/index.c:250:31: fatal error: numpy/arrayobject.h: No such file or directory #include "numpy/arrayobject.h"

  3. So try this:

    http://stackoverflow.com/questions/12436979/how-to-fix-python-numpy-pandas-installation

    tldr; delete all traces of numpy out of your system and reinstall using pip

Clone this wiki locally