Is there any way to update the current conda base (root) environment, which has Python 3.8.11 currently to Python 3.9 or 3.10? I know using a new virtual environment is the recommended way to go, but I still want to learn how to do it.
I tried using conda install python=3.9
and conda install python=3.10
, which is recommended by a few posts a few years ago, but they didn't work and I ended up with the following error
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: -
Found conflicts! Looking for incompatible packages.
This can take several minutes. Press CTRL-C to abort.
failed
Also, using conda update python
only changed the micro version number (I think it upgraded from Python 3.8.10 to 3.8.11)