How can I know a anaconda installer is for which python version?

How can I know a anaconda installer is for which python version?

Problem Description:

I want to install python3.7 by anaconda and the anaconda list is shown below:
anaconda version list
My question is how can I know a anaconda installer is for a special verison of python?

Actually, I know "Anaconda3-2020.05-Linux-x86_64.sh" is for python3.7。However, I am confused that by what infomation we can get the answer before we finish installing it.

Solution – 1

You can install specific version of python through the anaconda prompt, using:
conda install python = 2.7.8 or conda install python = 3.5.0 (for example).

You can even create a dedicated python environnement for a specific version:
conda create --name py36 python=3.6

Solution – 2

Anton B answer is correct, but if you just want to download the correct installer, you can use the following:

A similar question was previously asked here:
How to get anaconda/miniconda vs python versions mapping table?

Rate this post
We use cookies in order to give you the best possible experience on our website. By continuing to use this site, you agree to our use of cookies.
Accept
Reject