Reputation: 61
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
Upvotes: 6
Views: 4012
Reputation: 2640
Run this:
conda install anaconda=4.3
Read this: https://www.scivision.co/switch-anaconda-python-36/
Upvotes: 3