Installing HDF5 & Pytables on Ubuntu

Jupyter Data
1 min readJul 28, 2015

--

Install HDF5

>> sudo apt-get install libhdf5-serial-dev

Into your virtualenv, install Cython using pip

>> pip install cython

Install Pytables

>> pip install tables

Or With python 2.7 on ubuntu, you might need to install pytables first

>> sudo apt-get install python-tables

--

--