Exception 'HDFStore requires PyTables ' when using HDF5 file in iPython
问题 I am very new to Python and am trying to create a table in pandas with HDFStore as follows store = HDFStore('store.h5') I get the exception : Exception Traceback (most recent call last) C:\Python27\<ipython-input-11-de3060b689e6> in <module>() ----> 1 store = HDFStore('store.h5') C:\Python27\lib\site-packages\pandas-0.10.1-py2.7-win32.egg\pandas\io\pytables.pyc in __init__(self, path, mode, complevel, complib, fletcher32) 196 import tables as _ 197 except ImportError: # pragma: no cover -->