Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrade Anaconda Python version

I want to upgrade Anaconda Python version from 3.4 to 3.5 within cmd (Command Prompt) on Windows operating system. How can I do this?

If I do as in the docs:

conda update conda
conda update anaconda

The Python version remains as is (3.4).

like image 352
blaz Avatar asked Dec 14 '22 10:12

blaz


1 Answers

The following updates the Python version:

conda install python=3.5
like image 112
blaz Avatar answered Dec 17 '22 00:12

blaz