Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update python to a specific version using conda

Currently I have anaconda3 installed in my server with the following version:

Python 3.4.3 |Anaconda 2.3.0 (64-bit)

I want to update the Python to Python 3.5.1.

I know that conda update python updates python to latest version, but I want to update it to only 3.5.1. What will be the command for it?

like image 809
Madhavi Jouhari Avatar asked Apr 26 '17 05:04

Madhavi Jouhari


1 Answers

Have you tried conda install python=3.5.1? It deals with the current root environment instead of creating a separate one.

like image 151
benjdewantara Avatar answered Nov 13 '22 08:11

benjdewantara