-
压缩软件:bzip2
yum install -y bzip2
-
生信软件管家:Miniconda
- 下载:wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
- 安装:安装脚本 bash Miniconda3-latest-Linux-x86_64.sh
脚本激活:source ~/.bashrc -
conda 使用
conda list
conda search 软件
conda install 软件 -y
conda install 软件=版本 -y
conda remove 软件 -y
conda update 软件
rm -rf ~/miniconda3 vi ~/bash_profile
conda info --envs
conda create -n 环境名 软件 -y
source activate 环境名
conda remove -n 环境名 --all