复制下载链接:在需要的链接上右键,选择复制链接地址
下载
wget 刚才复制的下载链接
https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
安装
bash 文件名
bash Miniconda3-latest-Linux-x86_64.sh
然后source ~/.bashrc 激活miniconda
配置镜像
# 使用中科大的镜像
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/cloud/bioconda/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/cloud/conda-forge/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.bfsu.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes
查看安装文件列表
软件名 list
conda list

屏幕截图 2022-07-27 225630.jpg
安装软件
conda install 软件名 -y
-y是yes,安装过程中问题全部回答yes
conda install fastqc -y
卸载软件
conda remove 软件名 -y
conda remove fastqc -y