NumPy for windows python 2.7

I cannot find NumPy for windows python 2.7, although I found a version of OS X.

+4
source share
2 answers

A google search will tell you that its here .

+21
source

numpy-1.5.1-win32-superpack-python2.7.exe works for Python 2.7. I just installed and tested it with:

 >>> from numpy import * >>> a = arange(10).reshape(2,5) >>> a 

Output:

 >>> array([[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]]) 
+2
source

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


All Articles