MinicondaΒΆ
Windows Mac OS X Linux Python 3.7 Python 2.7 Other resources:
- Miniconda with Python 3.7 for Power8 & Power9
- Miniconda with Python 2.7 for Power8 & Power9
- Miniconda Docker images
- Miniconda AWS images
- Archive and MD5 sums for the installers
- conda change log
These Miniconda installers contain the conda package manager and Python. Once Miniconda is installed, you can use the conda command to install any other packages and create environments, etc. For example:
$ conda install numpy ... $ conda create -n py3k anaconda python=3 ...There are two variants of the installer: Miniconda is Python 2 based and Miniconda3 is Python 3 based. Note that the choice of which Miniconda is installed only affects the root environment. Regardless of which version of Miniconda you install, you can still install both Python 2.x and Python 3.x environments.
The other difference is that the Python 3 version of Miniconda will default to Python 3 when creating new environments and building packages. So for instance, the behavior of
$ conda create -n myenv pythonwill be to install Python 2.7 with the Python 2 Miniconda and to install Python 3.7 with the Python 3 Miniconda. You can override the default by explicitly setting
python=2
orpython=3
. It also determines the default value ofCONDA_PY
when usingconda build
.Note: If you already have Miniconda or Anaconda installed, and you just want to upgrade, you should not use the installer. Just use
conda update
. For instance$ conda update condawill update conda.