import pandas as pd dfs = pd.HDFStore(\'xxxxx.h5\')
throws this error:
\"ImportError: HDFStore requires PyTables, \"No module named t
Simply updating pytables with:
pytables
pip install --upgrade tables
worked for me.