I have Python 3.6 installed in my conda environment but I have to update it to the newer 3.10 version to be able to install newest versions of some packages. How can I update Python version in such a way that my already installed packages will also be updated if necessary?
CodePudding user response:
Within the environment:
conda install python=3.10
... and as always read the docs