The latest Anaconda 4.3.0 includes Python 3.6 or Python 2.7, but if you need a different version of the environment, you'll need to create a conda environment after installing Anaconda.
You can use the conda command below to create a conda environment with the specified version of Python and install various packages at the same time.
conda create -n Python35 anaconda python=3.5
--Python35: conda environment name (arbitrary name)
--anaconda: Metapackage with lots of packages
--python = 3.5: Specify the Python version after =
You can check the list of installed packages in advance by running conda info anaconda
from the command line.
Recommended Posts