本文介绍了康达安装Figtree的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Linux上使用Anaconda时,我尝试了以下操作:

Using Anaconda on Linux I tried this:

(如OP中那样),则模仿其推荐设置的命令将是

If you want to do this ad hoc (as in OP), the command that would mimic their recommended settings would be

conda install --override-channels -c conda-forge -c bioconda -c defaults figtree

其中通道的顺序定义了它们的优先级.

where the order of channels defines their precedence.

但是,通常最好在全局(Bioconda文档显示)或在每个环境(针对具有多个项目的用户)的基础上进行配置:

However, it is usually better practice to configure this either globally (what the Bioconda docs show) or on a per-environment basis (for users with a diversity of projects):

# activate environment
conda activate my_env

# set channels for environment
conda config --env --add channels defaults
conda config --env --add channels bioconda
conda config --env --add channels conda-forge

# no need to use ad hoc `-c` flags
conda install figtree

这篇关于康达安装Figtree的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 01:11