学习小组day3笔记-随风

  • 压缩软件:bzip2

    yum install -y bzip2

  • 生信软件管家:Miniconda

  1. 下载:wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
  2. 安装:安装脚本 bash Miniconda3-latest-Linux-x86_64.sh
    脚本激活:source ~/.bashrc
  3. 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


    Conda.png

你可能感兴趣的:(学习小组day3笔记-随风)