This repository was archived by the owner on Nov 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 254
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:
- 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>
- Install using pip
`$pip install <downloaded pandas package>`
- If you run into problems make sure you have installed the correct versions of numpy and cython
##Linux (OpenSUSE):
-
For linux it is safe to just install from pip using:
$pip install pandas -
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" -
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