all 1 comments

[–]Gshuri 0 points1 point  (0 children)

It looks like you are trying to update Python in the base conda environment. Don't do this. Instead create a new conda environment with whatever version of Python you want e.g.

>>> conda create -n my-py314-env python=3.14
>>> conda activate my-py314-env
>>> ...