今日学习在linux系统下安装、使用Miniconda
一、启动Miniconda
1、下载、安装Miniconda
- 借助清华镜像找到Miniconda的下载地址,应用
wget命令下载 - 选好安装目录后,利用
bash命令安装
2、激活Miniconda
利用source ~/.bashrc命令激活Miniconda,也即开启Miniconda环境
3、配置镜像加快今后下载速度
# 使清华镜像
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/bioconda
conda config --set show_channel_urls yes
二、使用Miniconda

查看当前所有软件列表

搜索软件 eg.fastqc

安装软件 -y是自动

卸载软件

创建新环境

激活环境

退出当前环境

查看环境

删除环境