如何在anaconda上安装pytables 3.2?

时间:2015-06-15 03:57:42

标签: python installation anaconda pytables

我使用anaconda,我无法使用

进行升级
conda update pytables

它说"已安装"。

....
# All requested packages already installed.
# packages in environment at C:\Anaconda:
#
pytables                  3.1.1                np19py27_1

然后我尝试了pip:

C:\Users\HP>pip install --upgrade tables
Collecting tables
  Using cached tables-3.2.0.tar.gz
    Complete output from command python setup.py egg_info:
    H5closecfvx_f.c
    r:\temp\H5closecfvx_f.c(2) : warning C4013: 'H5close' undefined; assuming ex
tern returning int
    LINK : fatal error LNK1181: cannot open input file 'hdf5dll.lib'
    * Using Python 2.7.3 |Anaconda 2.2.0 (32-bit)| (default, Feb 25 2013, 18:26:
30) [MSC v.1500 32 bit (Intel)]
    * USE_PKGCONFIG: False
    .. ERROR:: Could not find a local HDF5 installation.
       You may need to explicitly state where your local HDF5 headers and
       library can be found by setting the ``HDF5_DIR`` environment
       variable or by using the ``--hdf5`` command-line option.

    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in r:\temp\pip-build
-rxtig1\tables

我搜索了我的硬盘,但找不到hdf5dll.lib个文件。 然后我下载了最新的HDF5-1.8.15 Patch1并将HDF5_DIR指向已安装的目录,仍然是同样的错误,并且新安装的HDF5目录中也没有hdf5dll.lib文件。

1 个答案:

答案 0 :(得分:1)

编辑:由于下面的PR合并,pytables可用

conda install -c conda-forge pytables

此外,此程序包在默认通道中可用,但仅适用于numpy 1.11。

pip是一种非常困难的方法来排列这些。更好的方法可能是构建一个pytables包。这样做的一个努力是https://github.com/conda-forge/staged-recipes/pull/1134

Conda打包使得排列所有库依赖项变得更加容易。它本质上允许构建的负担集中,因此不是每个安装某些东西的人都需要知道如何构建它。

Conda forge是一项社区努力,旨在协作打包我们的生态系统。