Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

  • Running on 64-bit Windows 7
  • Python 2.7.10 :: Anaconda 2.3.0 (32-bit)
like image 379
Neal Kruis Avatar asked Mar 17 '16 14:03

Neal Kruis


People also ask

How long does it take for Anaconda to update?

It will take around 1–2 minutes to install.


1 Answers

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
like image 190
Nick Pandolfi Avatar answered Oct 15 '22 12:10

Nick Pandolfi