+1 vote
in Programming Languages by (56.5k points)
I installed Miniconda and found that it has Python 3.9. I want to upgrade it to Python 3.10. How can I upgrade Python from 3.9 to 3.10 in the conda environment?

1 Answer

+2 votes
by (348k points)
selected by
 
Best answer

You can install any version of Python, if available, using the following command:

conda install python="version"

E.g.

To install Python 3.10, you will run the following command on the terminal in the conda environment. 

conda install python="3.10"

This will upgrade your Python version from 3.9 to 3.10. 


...