学习小组Day3笔记--小明

作者: 雨夜_ea49 | 来源:发表于2020-06-10 23:41 被阅读0次

    关于Conda

    Conda和pip区别

    This highlights a key difference between conda and pip. Pip installs Python packages whereas conda installs packages which may contain software written in any language. For example, before using pip, a Python interpreter must be installed via a system package manager or by downloading and running an installer. Conda on the other hand can install Python packages as well as the Python interpreter directly.

    Conda和Anaconda区别


    Anaconda安装确实很大

    引用自官网


    常用命令

    查看所有软件
    conda list
    查找软件
    conda search fastqc
    安装软件
    conda install fastqc -y
    卸载软件
    conda remove fastqc -y
    创建conda环境
    conda create -n methylation
    查看conda环境
    conda info --envs
    激活conda环境
    conda activate methylation
    退出当前conda环境
    conda deactivate
    例子:rna-seq
    conda create -n rna-seq python=3 fastqc trimmomatic -y

    相关文章

      网友评论

        本文标题:学习小组Day3笔记--小明

        本文链接:https://www.haomeiwen.com/subject/vxamtktx.html