Home > Software design >  How to update Python version of my conda environment without loosing packages
How to update Python version of my conda environment without loosing packages

Time:07-07

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

  • Related