ImportError HDFStore requires PyTables No module named tables

前端 未结 7 1938
暗喜
暗喜 2020-12-14 14:27
import pandas as pd
dfs = pd.HDFStore(\'xxxxx.h5\')

throws this error:

\"ImportError: HDFStore requires PyTables, \"No module named t

7条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-14 14:50

    As TomAugspurger mentioned... It seems there is a bug with the latest version of pytables. You can install the current development version by executing the following command:

    sudo pip install git+https://github.com/PyTables/PyTables
    

    If it solved the problem, the question should be closed :)

提交回复
热议问题