美文网首页
Conda简介

Conda简介

作者: 诺之林 | 来源:发表于2020-01-16 11:20 被阅读0次

    Anaconda

    The open-source Anaconda Distribution is the easiest way to perform Python/R data science and machine learning on Linux, Windows, and Mac OS X

    Conda

    Package, dependency and environment management for any languag -- Python, R, Ruby, Lua, Scala, Java, JavaScript, C/ C++, FORTRAN, and more

    conda pip
    manages binaries wheel or source
    can require compilers no yes
    package types any Python-only
    create environment yes, built-in no, requires virtualenv or venv
    dependency checks yes no
    package sources Anaconda repo and cloud PyPI

    Miniconda

    Miniconda is a free minimal installer for conda

    vim ~/.zshrc
    # export PATH=/opt/miniconda3/bin:$PATH
    
    conda create -n python3 python=3.5 jupyterlab
    
    conda init zsh
    # restart shell
    
    conda activate python3
    
    conda list
    
    conda install numpy
    
    jupyter lab
    

    相关文章

      网友评论

          本文标题:Conda简介

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