ImportError HDFStore requires PyTables No module named tables

前端 未结 7 1925
暗喜
暗喜 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:48

    You can use pip on any os :

    python -m pip install tables

    You can check the official documentation on more ways to install it http://www.pytables.org/usersguide/installation.html

提交回复
热议问题