在 Anaconda 中更新软件版本

Update Software Version in Anaconda

我已经使用 Anaconda 在我的 Ubuntu 14.04 上安装了 python 和许多其他有用的工具。我使用

安装了 pysam(python 的 htslib 接口)
conda install pysam

但是这会安装旧版本 (0.6)。当前版本为 0.8.4。如何使用 conda 安装该版本。我不想使用 pip install pysam 因为我在某处阅读它可能会导致问题。

谢谢。

Anaconda 仅提供 0.6 版本。您可以使用以下命令从 binstar 安装:

conda install -c https://conda.anaconda.org/uhlitz pysam

这应该为您提供适用于 linux64 的版本 0.8.3。 Other channels 也可用。