Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NumPy for windows python 2.7 [closed]

Tags:

python

numpy

I can't find NumPy for windows python 2.7 although I found an OS X version of it.

like image 432
Woland Avatar asked Nov 29 '22 18:11

Woland


2 Answers

A Google search would tell you that its here .

like image 50
ismail Avatar answered Dec 06 '22 19:12

ismail


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]])
like image 45
crrn Avatar answered Dec 06 '22 19:12

crrn