conda create --name ENV_NAME python=3.10 You can also try conda update conda to see if it's update your conda base installation to 3.10. Answer from wbeater on reddit.com
🌐
Anaconda
anaconda.com › docs › getting-started › anaconda › release-notes
Anaconda Distribution release notes - Anaconda
The release notes below contain changes for each Anaconda Distribution version, as well as which packages are available in each installer, organized by operating system. ​ · Anaconda 2025.12-2 · Jan 13, 2026 · Python version: 3.13.9 · ...
🌐
Anaconda.org
anaconda.org › anaconda › python
python - anaconda | Anaconda.org
1 week ago - anaconda/python · Community · General purpose programming language · Overview · Files 1397 · Labels 1 · Badges · Versions · 3.14.4 · To install this package, run one of the following: $conda install anaconda::python · Monthly · Downloads Updates ·
Discussions

How can I update to the latest Python version using conda? - Stack Overflow
I am new to Python. I was asked to update to the latest Python version using conda. So far, I have installed Anaconda on my Mac. So I am mainly using the Terminal. Thank you in advance. More on stackoverflow.com
🌐 stackoverflow.com
How to check python anaconda version installed on Windows 10 PC? - Stack Overflow
I have a Windows 10 PC with python anaconda installed. The latest anaconda version is v5.0.1 I would like to find out whether the PC has the latest version v5.0.1 installed and whether it is 32-bit/ More on stackoverflow.com
🌐 stackoverflow.com
How to install Python 3.12.3 32bit with anaconda
The Conda distribution channel for win-32 only has Python versions up to 3.10.4. If you need anything newer than that, you'll need to build Python yourself using conda build using a modified version of this recipe . Then, you should be able to create an empty Conda environment and install the Python you just compiled using conda install .tar.gz. Alternatively, you can install Python directly using the official installer or build it from the tarball and manage your packages and environments using pip and venv/virtualenv. Unfortunately, you cannot use a local/self-compiled Python with Conda. Truth be told, it's exceptionally unlikely that you'll run into any compatibility issues with using Python 3.10. There really wasn't any exciting new features added in Python 3.11 or 3.12, unless you're a f-string fanatic of some sort. I would just use Python 3.10 and not deal with the headache of manually managing your Python installation. More on reddit.com
🌐 r/learnpython
10
3
July 20, 2024
[deleted by user]
https://xkcd.com/1987/ More on reddit.com
🌐 r/pytorch
6
6
December 25, 2023
🌐
Reddit
reddit.com › r/learnpython › when downloading anaconda how do you use the latest version of python?
r/learnpython on Reddit: When downloading Anaconda how do you use the latest version of Python?
September 28, 2022 -

I'm completely new to programming and my teacher told us to download Anaconda. When I went to the official website there's Anaconda for only Python v3.9 whereas the Python website has it's latest version as 3.10.7.

So I'm pretty sure Anaconda comes with it's own version of Python, but is there anyway to use the latest version? If I download Python 3.10.7 can I switch to that instead of the default Anaconda 3.9 and still use the IDLE's?

Edit: For future reference:

  1. conda cmd-->admin to grant necessary permissions.

  2. create a new environment variable to combat solving env errors:

    conda create --name [ENV_NAME]

  3. update conda or install python version

    conda update --all conda install python==[version]

🌐
Anaconda
anaconda.com › home › blog › new release: anaconda distribution 2022.10
Anaconda | New Release: Anaconda Distribution 2022.10
October 18, 2022 - Anaconda Distribution 2022.10 comes with Python 3.9 and conda v22.9.0, support for Python 3.10, and an updated Anaconda Navigator. Anaconda Navigator has released version 2.3.1 and is included with the Anaconda Distribution 2022.10 installer.
🌐
Conda
docs.conda.io › projects › conda › en › 23.1.x › user-guide › tasks › manage-python.html
Managing Python — conda 23.1.0 documentation
Replace py39 with the name of the environment you want to create. anaconda is the metapackage that includes all of the Python packages comprising the Anaconda distribution. python=3.9 is the package and version you want to install in this new environment.
🌐
Anaconda
anaconda.com › home › blog › anaconda individual edition 2020.07
Anaconda | Anaconda Individual Edition 2020.07
October 3, 2025 - Anaconda Individual Edition 2020.07: New Python 3.8, updated packages, enhanced Jupyter Lab, and improved conda performance. Download the latest free distribution.
Find elsewhere
🌐
GitHub
github.com › koverholt › anaconda-version-map
GitHub - koverholt/anaconda-version-map: List of Anaconda/Miniconda versions and their corresponding Python versions · GitHub
The table below lists the version of Python that is the default for a given version of the Anaconda distribution.
Starred by 9 users
Forked by 2 users
Languages   Shell
🌐
Anaconda
anaconda.com › home › free download
Download Anaconda Distribution | Anaconda
April 8, 2025 - Download Anaconda's open-source Distribution today. Discover the easiest way to perform Python/R data science and machine learning on a single machine.
🌐
Anaconda
anaconda.com › home › blog › new release: anaconda distribution 2023.03
New Release: Anaconda Distribution 2023.03 | Anaconda
December 8, 2025 - As such, new package builds and ongoing maintenance for Python 3.7 ceased on March 1, 2023, and support for Python 3.8 will end later this year after the Python 3.11 update. To ensure a smooth transition and uninterrupted workloads, we recommend ...
🌐
Wikipedia
en.wikipedia.org › wiki › Anaconda_(Python_distribution)
Anaconda (Python distribution) - Wikipedia
3 weeks ago - The default installation of Anaconda2 includes Python 2.7 and Anaconda3 includes Python 3.7. However, it is possible to create new environments that include any version of Python packaged with Conda.
🌐
Anaconda
anaconda.com › home › blog › upcoming release(s): anaconda distribution 2023.03 and beyond
Upcoming Release(s): Anaconda Distribution 2023.03 and Beyond | Anaconda
July 16, 2025 - The Anaconda Distribution 2023.03 installer comes with support for Python 3.10 and an updated Anaconda Navigator 2.3.2. To strengthen our machine learning package offerings, we have included Transformers and imbalanced-learn with the latest ...
Top answer
1 of 4
40

Inside of conda environment, you can update python to latest as follow:

conda update python

Or you can upgrade or downgrade the environment python version:

conda install python=3.10

Updating or Upgrading Python

2 of 4
27

Open conda shell prompt. (On Windows Anaconda Powershell Prompt)

You first check

conda search python

You will get all the supported versions. It may look like:

Loading channels: done
# Name                       Version           Build  Channel
python                        2.7.13     h1b6d89f_16  pkgs/main
python                        2.7.13     h9912b81_15  pkgs/main
python                        2.7.13     hb034564_12  pkgs/main
python                        2.7.14     h2765ee6_18  pkgs/main
python                        2.7.14     h3e68818_15  pkgs/main
python                        2.7.14     h4084c39_22  pkgs/main
python                        2.7.14     h4a10d90_30  pkgs/main
python                        2.7.14     h4a10d90_31  pkgs/main
python                        2.7.14     h59f5a59_20  pkgs/main
python                        2.7.14     h819644d_16  pkgs/main
python                        2.7.14     h8c3f1cb_23  pkgs/main
python                        2.7.15      h2880e7c_2  pkgs/main
python                        2.7.15      h2880e7c_3  pkgs/main
python                        2.7.15      h2880e7c_4  pkgs/main
python                        2.7.15     hcb6e200_15  pkgs/main
python                        2.7.15      hcb6e200_5  pkgs/main
python                        2.7.15      hcb6e200_7  pkgs/main
python                        2.7.15      he216670_0  pkgs/main
python                        2.7.16      hcb6e200_0  pkgs/main
python                        2.7.17      h930f6bb_0  pkgs/main
python                         3.5.4     h1357f44_23  pkgs/main
python                         3.5.4     hc495aa9_21  pkgs/main
python                         3.5.4     hd3c4935_11  pkgs/main
python                         3.5.4     hdec4e59_20  pkgs/main
python                         3.5.4     hedc2606_15  pkgs/main
python                         3.5.5      h0c2934d_0  pkgs/main
python                         3.5.5      h0c2934d_1  pkgs/main
python                         3.5.5      h0c2934d_2  pkgs/main
python                         3.5.6      he025d50_0  pkgs/main
python                         3.6.2     h09676a0_15  pkgs/main
python                         3.6.2     h6679aeb_11  pkgs/main
python                         3.6.3      h210ce5f_2  pkgs/main
python                         3.6.3      h3389d20_0  pkgs/main
python                         3.6.3      h3b118a2_4  pkgs/main
python                         3.6.3      h9e2ca53_1  pkgs/main
python                         3.6.4      h0c2934d_2  pkgs/main
python                         3.6.4      h0c2934d_3  pkgs/main
python                         3.6.4      h6538335_0  pkgs/main
python                         3.6.4      h6538335_1  pkgs/main
python                         3.6.5      h0c2934d_0  pkgs/main
python                         3.6.6      hea74fb7_0  pkgs/main
python                         3.6.7      h33f27b4_0  pkgs/main
python                         3.6.7      h33f27b4_1  pkgs/main
python                         3.6.7      h9f7ef89_2  pkgs/main
python                         3.6.8      h9f7ef89_0  pkgs/main
python                         3.6.8      h9f7ef89_1  pkgs/main
python                         3.6.8      h9f7ef89_7  pkgs/main
python                         3.6.9      h5500b2f_0  pkgs/main
python                         3.7.0      hea74fb7_0  pkgs/main
python                         3.7.1      h33f27b4_3  pkgs/main
python                         3.7.1      h33f27b4_4  pkgs/main
python                         3.7.1      h8c8aaf0_6  pkgs/main
python                         3.7.1      he44a216_5  pkgs/main
python                         3.7.2      h8c8aaf0_0  pkgs/main
python                         3.7.2     h8c8aaf0_10  pkgs/main
python                         3.7.2      h8c8aaf0_2  pkgs/main
python                         3.7.3      h8c8aaf0_0  pkgs/main
python                         3.7.3      h8c8aaf0_1  pkgs/main
python                         3.7.4      h5263a28_0  pkgs/main
python                         3.7.5      h8c8aaf0_0  pkgs/main
python                         3.8.0      hff0d562_0  pkgs/main
python                         3.8.0      hff0d562_1  pkgs/main
python                         3.8.0      hff0d562_2  pkgs/main

Then simple select the version conda install python=3.8.0 if this is the last version.

🌐
Conda
docs.conda.io › projects › conda › en › latest › user-guide › tasks › manage-python.html
Managing Python — conda 26.3.3.dev42 documentation
Conda supports Python 3.10, 3.11, 3.12, 3.13, and 3.14. To list the versions of Python that are available to install, in your terminal window, run:
🌐
Anaconda
anaconda.com › home › blog › anaconda distribution 2023.09: new release
Anaconda Distribution 2023.09: New Release | Anaconda
September 29, 2023 - Explore our Anaconda Distribution 2023.09 metapackages here (Python 3.8, 3.9, 3.10, and 3.11 builds are available). Beginning with this release, we will now specify the BLAS variant in the filename to indicate the BLAS implementation used in ...
🌐
Anaconda
anaconda.com › home › blog › new release: anaconda distribution 2023.07, miniconda 23.5.0, and more!
New Release: Anaconda Distribution 2023.07, Miniconda 23.5.0, and More! | Anaconda
December 9, 2025 - Anaconda Distribution 2023.07 and Miniconda 23.5.0 bring Python 3.11, updated conda solver, improved package versions, and enhanced performance for data scientists.