I have installed Anaconda in order to set up different environments for python. I know that I can create different environments with different python versions with the shell, like so:
conda create -n myenv python=3.6
How would I be able to create a new environment with Python 3.6 using the Anaconda navigator. For some reason it only shows Python version 3.7
Anaconda supports Python 3.7, 3.8, 3.9 and 3.10. The current default is Python 3.9.
can I install multiple versions of Python on my machine? can I install multiple versions of Anaconda? You can but because of the answer above you don't need to and shouldn't. Instead of multiple Anaconda versions, just create multiple environments with the versions of packages you need.
I had the same issue and was hoping there would be an answer here. I finally found the following which directly answers your question. Thanks for asking!
https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-python.html
Specifically, do the following:
Installing a different version of Python. Create the new environment:
To create the new environment for Python 3.6, in your terminal window or an Anaconda Prompt, run:
conda create -n py36 python=3.6 anaconda
You need not go any further. From this point forward, every time you create a new environment, you will see:
I know this answer has been accepted a while ago but, from Anaconda Navigator, clicking "Update index..." button on the default environment fixed it for me (without having to use conda command prompt)
In addition to installing the metapackage
conda create -n py36 python=3.6 anaconda
you must activate the environment (also in anaconda prompt)
conda activate py36
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With