centos7 中 mamba的安装

 

001、系统

[root@PC1 software]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core)

 

002、下载安装包

[root@PC1 software]# wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh

 

003、安装

[root@PC1 software]# bash Mambaforge-Linux-x86_64.sh   ## 选回车或者yes

 

004、修改环境变量

[root@PC1 bin]# echo "export PATH=$PATH:/root/mambaforge/bin" >> ~/.bashrc
[root@PC1 bin]# source ~/.bashrc

 

005、测试mamba命令

[root@PC1 bin]# mamba --version
mamba 1.4.1
conda 23.1.0

 

006、添加软件源

[root@PC1 bin]# conda config --add channels bioconda

 

007、安装软件测试

[root@PC1 bin]# mamba install fastqc -y

 

008、调用测试

[root@PC1 bin]# fastqc --version
FastQC v0.12.1

 

参考:https://mp.weixin.qq.com/s/rMXef3fAD-YQRpLUSC6L1g

 

posted @ 2023-05-22 17:03  小鲨鱼2018  阅读(452)  评论(0编辑  收藏  举报