2014-11-24 190 views
4

我試圖在使用Anaconda的64位Windows 8機器上爲我的Python 3安裝安裝hdf5storage包。 只是爲了確保一切是最新的,我做了一個Conda沒有找到存在的binstar包

C:\Users\Baeuerle>conda install binstar 
Fetching package metadata: .. 
Solving package specifications: . 
Package plan for installation in environment C:\Anaconda3: 

The following packages will be downloaded: 

    package     |   build 
    ---------------------------|----------------- 
    binstar-0.9.4    |   py34_0   115 KB 
    clyent-0.3.2    |   py34_0   13 KB 
    conda-3.7.3    |   py34_0   202 KB 
    pytz-2014.9    |   py34_0   167 KB 
    requests-2.4.3    |   py34_0   607 KB 
    setuptools-7.0    |   py34_0   749 KB 
    ------------------------------------------------------------ 
              Total:   1.8 MB 

The following NEW packages will be INSTALLED: 

    clyent:  0.3.2-py34_0 

The following packages will be UPDATED: 

    binstar: 0.7.1-py34_0 --> 0.9.4-py34_0 
    conda:  3.7.0-py34_0 --> 3.7.3-py34_0 
    pytz:  2014.7-py34_0 --> 2014.9-py34_0 
    requests: 2.4.1-py34_0 --> 2.4.3-py34_0 
    setuptools: 5.8-py34_0 --> 7.0-py34_0 

Proceed ([y]/n)? 

Fetching packages ... 
binstar-0.9.4- 100% |###############################| Time: 0:00:01 109.73 kB/s 
clyent-0.3.2-p 100% |###############################| Time: 0:00:00 25.88 kB/s 
conda-3.7.3-py 100% |###############################| Time: 0:00:05 39.58 kB/s 
pytz-2014.9-py 100% |###############################| Time: 0:00:00 179.44 kB/s 
requests-2.4.3 100% |###############################| Time: 0:00:02 210.03 kB/s 
setuptools-7.0 100% |###############################| Time: 0:01:30 8.45 kB/s 
setuptools-7.0 100% |###############################| Time: 0:00:03 216.41 kB/s 
Extracting packages ... 
[  COMPLETE  ] |#################################################| 100% 
Unlinking packages ... 
[  COMPLETE  ] |#################################################| 100% 
Linking packages ... 
[  COMPLETE  ] |#################################################| 100% 

第一。然後我做了:

C:\Users\Baeuerle>binstar show auto/hdf5storage 
Using binstar api site https://api.binstar.org 
Name: hdf5storage 
Summary: https://github.com/frejanordsiek/hdf5storage 
Access: public 
Package Types: conda 
Versions: 
    + 0.1.1 

To install this package with conda run: 
    conda install --channel https://conda.binstar.org/auto hdf5storage 

C:\Users\Baeuerle>conda install --channel https://conda.binstar.org/auto hdf5storage 
Fetching package metadata: ... 
Error: No packages found in current win-64 channels matching: hdf5storage 

You can search for this package on Binstar with 

    binstar search -t conda hdf5storage 

C:\Users\Baeuerle> 

那麼這裏有什麼問題?很明顯,該軟件包在那裏,我使用了推薦的命令。爲什麼不能conda找到它呢?這是一個64位的問題,如果是的話,通過anaconda安裝hdf5storage的最佳方式是什麼?

+1

'auto'頻道只有Linux的軟件包。 – asmeurer 2015-01-22 22:50:43

回答

1

我對圖形工具包和sigcpp依賴關係有完全相同的問題。我在osx Yosemite 10.10上。

我想安裝圖形工具。在binstar上找到適合osX的軟件包。

conda install --channel https://conda.anaconda.org/vgauthier graph-tool 

,總是有以下消息

Error: Could not find some dependencies for graph-tool: sigcpp 

雖然sigcpp已安裝

conda install sigcpp 
Fetching package metadata: .......... 
Solving package specifications: . 
# All requested packages already installed. 
# packages in environment at /Users/aperrier/anaconda/envs/py34: 
# 
sigcpp     2.3.1       2 

什麼最後的工作是先加通道暢達,然後安裝sigcpp和graph-tool

conda config --add channels https://conda.binstar.org/cyclus 
conda install sigcpp 

被告知該軟件包已經存在。 但是隨後圖形工具安裝工作

conda config --add channels https://conda.binstar.org/vgauthier 
conda install graph-tool 

,我能夠在IPython中

終於導入graph_tool這是沒有意義的我,但也許這將幫助別人同樣的問題。

+0

在我的Macbook上安裝圖形工具時出現問題。我正在使用conda。當接着上述我得到一個Errort:下面的規範被發現有衝突: - 圖形工具2.16 * - python 2.7 * – Kai 2016-09-10 15:42:59

+0

我也嘗試了圖形工具沒有= 2.16,同樣的錯誤。 2.18沒有找到osX。 – Kai 2016-09-10 18:37:23