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
--> 198 raise Exception('HDFStore requires PyTables')
199
200 self.path = path
Exception: HDFStore requires PyTables
I already have Pytables installed and it is present in site-packages. Both pandas(0.l0.1) and pytables(2.4.0) are 32 bit Windows versions. Python version is 2.7.3 for 32 bit windows
I am running this using ipython notebook.
I forgot to add that I have Windows 7 - 64 bit OS, but Python and all its related add-ons are 32 bit.

import tables?ImportError Traceback (most recent call last) C:\Python27\<ipython-input-12-389ecae14f10> in <module>() ----> 1 import tables C:\Python27\lib\site-packages\tables\__init__.py in <module>() 67 68 # Necessary imports to get versions stored on the cython extension ---> 69 from tables.utilsExtension import getPyTablesVersion, getHDF5Version 70 71 ImportError: cannot import name getPyTablesVersion