搜索miniconda下载地址
1、百度/谷歌搜索“miniconda清华"
2、进入 https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/
3、用uname-a命令查看服务器多少位,复制最新版本下载地址。
wget命令下载
wget 最新版本地址

安装和激活miniconda
安装:bash Miniconda3-latest-Linux-x86_64.sh
激活:source ~/.bashrc



查看当前服务器上安装的所有软件列表
命令:conda list

安装fastqc
命令:conda install fastqc=0.11.7 -y

确认是否安装成功
命令:fastqc --help

卸载软件
命令:conda remove fastqc -y
