在Windows 7 64位中导入Python中的表时出错

时间:2015-06-30 22:10:40

标签: python pandas pytables

我正在尝试在Pandas中使用HDFStore命令,虽然我安装了PyTables,但是当我运行命令时:

import pandas as pan
filename=('testfile.h5')
store=pan.HDFStore(filename)

我收到以下错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\dashamstyr\Anaconda\lib\site-packages\pandas\io\pytables.py", line 390, in __init__
    raise ImportError('HDFStore requires PyTables, "{ex}" problem importing'.format(ex=str(ex)))
ImportError: HDFStore requires PyTables, "cannot import name blosc_get_complib_info_" problem importing

当我运行命令时:

import tables

我收到此错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Users\dashamstyr\Anaconda\lib\site-packages\tables\__init__.py", line 84, in <module>
    from tables.utilsextension import (
ImportError: cannot import name blosc_get_complib_info_

我使用Windows 7 64位的Anaconda Python发行版。我有以下版本的相关软件包(我认为它们都是最新的):

  • Python 2.7.9
  • PyTables 3.2.0
  • HDF5 1.8.15.1
  • Cython 0.22.1
  • numexpr 2.4.3
  • Pandas 0.16.2

0 个答案:

没有答案