Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install HDF5 and pytables in ubuntu

Tags:

I am trying to install tables package in Ubuntu 14.04 but sems like it is complaining.

I am trying to install it using PyCharm and its package installer, however seems like it is complaining about HDF5 package.

However, seems like I cannnot find any hdf5 package to install before tables.

Could anyone explain the procedure to follow?

like image 235
codeKiller Avatar asked Jul 30 '15 09:07

codeKiller


People also ask

How do I download HDF5 on Ubuntu?

Search for the HDF5 library in the ubuntu package repository. The command will show the packages relating to hdf5. install the relevant package to you. sudo apt-get install package-name.

What is PyTables package?

PyTables is a package for managing hierarchical datasets and designed to efficiently and easily cope with extremely large amounts of data. You can download PyTables and use it for free. You can access documentation, some examples of use and presentations here.

Does Python install PIP?

PIP is automatically installed with Python 2.7.9+ and Python 3.4+ and it comes with the virtualenv and pyvenv virtual environments.

Where is HDF5?

1. Obtaining HDF5 The latest supported public release of HDF5 is available from https://www.hdfgroup.org/downloads/hdf5/. For Unix and UNIX-like platforms, it is available in tar format compressed with gzip. For Microsoft Windows, it is in ZIP format.


1 Answers

I found that installing the libhdf5-serial-dev with

  sudo apt-get install libhdf5-serial-dev 

did the trick.

like image 133
T.C. Proctor Avatar answered Sep 20 '22 17:09

T.C. Proctor