miniconda

Post tags: | conda | python |

Why Anaconda - Modern open source analytics platform powered by Python

Miniconda

miniconda 64-bit Python 2.7 bash installer

miniconda 64-bit Python 3.4 bash installer

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:

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 python
        

will be to install Python 2.7 with the Python 2 Miniconda and to install Python 3.4 with the Python 3 Miniconda. You can override the default by explicitly setting python=2 or python=3. It also determines the default value of CONDA_PY when using conda build.

Using conda