Neal Kruis
Neal Kruis

Reputation: 2307

Anaconda not updating to latest

The latest version of anaconda is 2.5. When I type:

conda update conda
conda update anaconda

I get

# All requested packages already installed.
# packages in environment at C:\Users\<user>\Anaconda:
#
conda                     4.0.5                    py27_0

and

# All requested packages already installed.
# packages in environment at C:\Users\<user>\Anaconda:
#
anaconda                  2.3.0                np19py27_0

respectively.

How do I get conda to get version 2.5?

Upvotes: 8

Views: 3670

Answers (1)

Nick Pandolfi
Nick Pandolfi

Reputation: 993

I found this:

https://www.continuum.io/blog/developer-blog/anaconda-25-release-now-mkl-optimizations

Instead:

conda update conda
conda install anaconda=2.5

Upvotes: 6

Related Questions