I am going through this post Numpy, Scipy, and Pandas - Oh My!, installing some python packages, but got stuck at the line for installing Pandas:
pip install
sudo apt-get install libbz2-dev Thanks to Freek Wiekmeijer for this.Now you also need to build python with bz2. Previously installed python won't work. For the do following:-
Download stable python version from https://www.python.org/downloads/source/ then extract that Gzipped source tarball file. You can use wget https://python-tar-file-link.tgz to download and tar -xvzf python-tar-file.tgz to exact it in current directory
Go inside exacted folder then run following command on at a time
./configuremakemake installpython file in the same directory. Just create a virtual environment.
./python -m env myenv (create myenv in the same directory or outside it's your choice)source myenv/bin/activate (activate virtual environment)pip install pandas (install pandas in the current environment)