2017-01-03 267 views
0

我正在嘗試安裝conda軟件包(macs2)。我已經安裝了conda,爲了確保它已安裝,我輸入:安裝conda軟件包時出錯

conda list 

我已經安裝了軟件包,所以安裝了conda。

然後我嘗試這個命令來安裝macs2:

conda create --name macs macs2 

這裏是錯誤:

PackageNotFoundError: Package not found: '' Package missing in current linux-64 channels: 
    - macs2 

You can search for packages on anaconda.org with 

    anaconda search -t conda macs2 

我有Ubuntu的64

回答

1

您需要指定通道從該軟件包將被下載。默認情況下,搜索中只包含defaults頻道,因此您必須添加-c--channel選項並添加正確的頻道。在Anaconda.org搜查表明,正確的通道是bioconda通道,所以下面應該工作:

conda create -n macs -c bioconda macs2 

您可能要檢查出Bioconda的文檔:https://bioconda.github.io/#set-up-channels