Can't upgrade to numpy 1.13 using anaconda?

PyPI has several 1.13.3 packages for a month https://pypi.python.org/pypi/numpy

Anaconda cloud claims to have 1.13 https://anaconda.org/anaconda/numpy

But I just get 1.11.3-py35_0 when I use conda update numpy

enter image description here

My environment: Windows 7 64-bit python 3.5

+4
source share
2 answers

You can try installing a specific version of NumPy. In your case, you can use:

$ conda install numpy=1.13

In case of conflicts, it will show conflicting packets.

For instance:

$ conda install numpy=1.14

Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:
  - blaze -> numba -> numpy[version='>=1.13,<1.14.0a0']
  - numpy=1.14
Use "conda info <package>" to see the dependencies for each package.

In this case, blazethey numbaprevent the update of NumPy.

+9
source

, !

:

pip install --upgrade numpy

, ls -, , 1.14.0.

+1

Source: https://habr.com/ru/post/1683376/


All Articles