ImportError HDFStore requer PyTables Nenhum módulo chamado tabelas

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

lança este erro:

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

Eu tentei instalar o PyTables, que requer o Cython. Eu tenho o Cython 0.21 instalado, mas está ocorrendo um erro informando que o Cython deve ser maior que 0,13

Aqui está o log que estou recebendo:

".. 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..."

Por favor, me guie como resolver este problema.

questionAnswers(7)

yourAnswerToTheQuestion