Scientific Computing with NumPy

Robert Kern robert.kern at gmail.com
Fri Feb 10 11:22:05 EST 2006


linda.s wrote:
> where to download numpy for Python 2.3 in Mac?

I don't think anybody has a binary package compiled for you. However, if you
have gcc installed, numpy should build out-of-box.

$ tar zcf ~/downloads/numpy-0.9.4.tar.gz
$ cd numpy-0.9.4
$ python setup.py build
$ sudo python setup.py install --install-scripts=/usr/local/bin

Note: the sudo in that last command is only necessary if your user account does
not have write access to /usr/local/bin

-- 
Robert Kern
robert.kern at gmail.com

"In the fields of hell where the grass grows high
 Are the graves of dreams allowed to die."
  -- Richard Harter




More information about the Python-list mailing list