ImportError HDFStore requiere PyTables No hay módulos con nombre en tablas

import pandas as pd
dfs = pd.HDFStore('xxxxx.h5')

arroja este error:

"ImportError: HDFStore requires PyTables, "No module named tables" problem importing"

Intenté instalar PyTables, que requiere Cython. Tengo instalado Cython 0.21, pero arroja un error que indica que Cython debería ser mayor que 0.13

Aquí está el registro que estoy recibiendo:

".. ERROR:: You need Cython 0.13 or greater to compile PyTables!

----------------------------------------
Cleaning up...
Command python setup.py egg_info failed with error code 1 in /private/tmp/pip_build_root/tables
Storing debug log for failure in /Users/nikhilsahai/Library/Logs/pip.log
Nikhils-MacBook-Pro:~ nikhilsahai$ sudo pip install cython
Requirement already satisfied (use --upgrade to upgrade): cython in /Library/Python/2.7/site-packages/Cython-0.21-py2.7-macosx-10.9-intel.egg
Cleaning up..."

Guíeme cómo resolver este problema.

Respuestas a la pregunta(7)

Su respuesta a la pregunta