·Linux应用商店conda下载及软件的安装与卸载
- 进入软件安装目录,例:cd biosoft
- 下载命令为:wegt+miniconda下载网址【清华大学镜像站】https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
- 安装miniconda,命令为:bash Miniconda3-latest-Linux-x86_64.sh ,然后按指定操作即可
- 安装miniconda结束后,还需激活,命令为:source ~/.bashrc
- 安装并激活后,需添加镜像(主网站的副本,中间商意思)。输入命令为: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
注:有yes和没有yes的区别
·使用conda
- 查看当前服务器上安装的所有软件列表,命令为:conda list
- 搜索、下载与卸载软件
命令分别为
conda search fastqc
conda install fastqc -y
conda remove fastqc -y