Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to update Python version in root environment in conda

Tags:

python

conda

Simple question: How do I update from Python 3.5 to 3.6 in my root environment in conda? That is, I don't want to create a new Python 3.6 environment; I want my root environment to change to Python 3.6

I've tried

conda update --all python=3.6

This updates packages, but not the Python version.

I've also tried

conda install python=3.6

I get an UnsatisfiableError

like image 620
Eric F Avatar asked Mar 10 '17 18:03

Eric F


People also ask

How do I update python 3.9 in Anaconda?

This can be installed via conda with the command conda install -c anaconda python=3.9 as per anaconda.org/anaconda/python. running conda update --all may resolve some dependency failures. Is python3.

Can I change python version in Anaconda?

With Navigator, you can have different versions of Python on your computer and easily switch between them by keeping them in different environments. To use a different version of Python than the one you are currently using, set up a new environment: Start Navigator.


1 Answers

Run this:

conda install anaconda=4.3

Read this: https://www.scivision.co/switch-anaconda-python-36/

like image 125
oshaiken Avatar answered Sep 20 '22 11:09

oshaiken