4

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).

blaz
  • 4,108
  • 7
  • 29
  • 54
  • 1
    Which platform? (On Windows, you need to either create a new environment or uninstall the old version, then do a clean install of Anaconda 2.4). Did you read [the docs](http://docs.continuum.io/anaconda/install#updating-from-older-anaconda-versions)? – Tim Pietzcker Nov 18 '15 at 07:04
  • Read their docs. It's on like the first page. – Mad Physicist Nov 18 '15 at 07:05
  • Possible duplicate of [Updating Anaconda's root Python to newer minor version on Windows does nothing](http://stackoverflow.com/questions/29220236/updating-anacondas-root-python-to-newer-minor-version-on-windows-does-nothing) – Dimitris Fasarakis Hilliard Nov 18 '15 at 07:07

1 Answers1

12

The following updates the Python version:

conda install python=3.5
blaz
  • 4,108
  • 7
  • 29
  • 54