On 12/3/06, Arild B. Næss <[EMAIL PROTECTED]> wrote: > > > Den 3. des. 2006 kl. 17.00 skrev Gael Varoquaux: > > On Sun, Dec 03, 2006 at 04:56:49PM +0100, Arild B. Næss wrote: > This gets me further, actually the installation seems to complete. > However, when I type > > import Numeric > in Python, I get the usual ImportError: No module named Numeric. > > Thats normal, you installed numpy. > > Hm, this doesn't work for you either? It says on this page that "import > Numeric" is a normal test: > http://numpy.scipy.org/numpydoc/numpy-3.html
That document looks out of date. If you just install numpy you won't be able to import Numeric -SNIP- > You got my hopes up for a second there, but I can do neither: > > Python 2.5 (r25:51918, Sep 19 2006, 08:49:13) > [GCC 4.0.1 (Apple Computer, Inc. build 5341)] on darwin > Type "help", "copyright", "credits" or "license" for more information. > >>> from numpy import * > Running from numpy source directory. > >>> a= array([[1,2,3],[4,5,6]]) > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > NameError: name 'array' is not defined You will get this error running from the numpy source directory. cd to somewhere else. _______________________________________________ Numpy-discussion mailing list [email protected] http://projects.scipy.org/mailman/listinfo/numpy-discussion
