先马一个删除conda的方法链接生信小白第3天-linux的App Store
显示服务器的位数 uname -a
拷贝别人的链接 【意思就是拷贝doudou目录下的这个安装包到你的biosoft目录】
cp /home/doudou/biosoft/Miniconda3-latest-Linux-x86_64.sh ~/biosoft
重头戏——安装conda##
#代码从miniconda 清华的镜像网站上下载
wget https://mirrors.tuna.tsinghua.edu.cn/anaconda/miniconda/Miniconda3-latest-Linux-x86_64.sh
#开始安装
bash Miniconda3-latest-Linux-x86_64.sh
#很多回车和yes
#下面记得要激活
source ~/.bashrc
# 使用中科大的镜像(复制粘贴要注意),添加镜像网站,加快下载速度
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
#代码都来自生信星球