Anaconda Python Version Upgrade

I want to upgrade the version of Anaconda Python from 3.4 to 3.5 on the cmsd command line (on the command line) on a Windows operating system. How can i do this?

If I do as documents :

conda update conda
conda update anaconda

The Python version remains the same as (3.4).

+4
source share
1 answer

The following Python version updates:

conda install python=3.5
+6
source

Source: https://habr.com/ru/post/1616318/


All Articles