Pytables 2.3.1 With Python 2.5 On Windows: Error - Could Not Find A Local Hdf5 Installation
I'm trying to install PyTables 2.3.1 on Windows XP with Python 2.5. I'm getting the following error: Could not find a local HDF5 installation. You may need to explicitly state wher
Solution 1:
from the docs you can try: Put the DLL libraries (hdf5dll.dll and, optionally, lzo1.dll and bzip2.dll)
in a directory listed in your PATH environment variable
. The setup.py installation program will print out a warning to that effect if the libraries can not be found.
locate
hdf5dll.dll
and make sure dir containig it is in the PATH var or you can try --hdf5=path/to/ command
Post a Comment for "Pytables 2.3.1 With Python 2.5 On Windows: Error - Could Not Find A Local Hdf5 Installation"