我正在尝试安装conda软件包(macs2)。我已经安装了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。
答案 0 :(得分:1)
您需要指定从中下载程序包的通道。默认情况下,搜索中仅包含defaults
频道,因此您必须添加-c
或--channel
选项并添加正确的频道。对Anaconda.org的搜索显示正确的频道是bioconda
频道,因此以下内容应该有效:
conda create -n macs -c bioconda macs2
您可以查看Bioconda的文档:https://bioconda.github.io/#set-up-channels