


If you don't want to handle environments or face incompatibilities issues, you can download any Anaconda version here. I tested it myself and did not encounter any issue but I guess it depends on the packages you installed. With this second solution, you may encounter some incompatibility issues with other packages. and as always read the docs How can I download Anaconda for python 3.6Īs suggested here, with an installation of the last anaconda you can create an environment just like Cleb explained or downgrade python : conda install python=3.6.0 Within the environment: conda install python=3.10

How to update Python version of my conda environment without loosing packages Then, install the latest version using conda install python=3.8.3. How to update Python to the latest version in Conda environment?įirst check for all the python version available to install using conda search python. How to change Python version of existing conda virtual environment?Īctivate the relevant environment, then install your target python version. In order to install ipython for python 3.9, pip3.9 install ipython Once the installation is done, a new executable will be created for python 3.9 and pip 3.9 will be created. Instead, you can download the python 3.9 executable and install it. Python 3.9 is now available in conda-forge.Īs pointed out in the comments, python 3.9 is not yet there on any channels. You can now directly create python 3.9 environment using the following command conda create -n p圓9 python=3.9 To create python 3.10 conda environment use the following command conda create -n p圓10 python=3.10 If you want to upgrade between major python version like 3.5 to 3.6, you'll have to do conda install python=$pythonversion$ī) Method 2 - Create a new environment (Better Method) conda create -name p圓6 python=3.6Ĭ) To get the absolute latest python (3.6.5 at time of writing) conda create -name p圓65 python=3.6.5 -channel conda-forgeĮDIT: Anaconda now has a Python 3.6 version here How to install python with conda? To update anaconda type conda update conda If you wanted to update you will type conda update python How do I upgrade to Python 3.6 with conda?Īnaconda has not updated python internally to 3.6.
