Conda简介

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

  • Anaconda Download

Conda

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

  • Understanding Conda and Pip
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

  • Miniconda Download
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简介)