Re: [Numpy-discussion] numpy issues at startup

2009-06-02 Thread Robert Kern
On Tue, Jun 2, 2009 at 13:19, Turner, Todd J Civ USAF AFMC AFRL/RXLMP
todd.tur...@wpafb.af.mil wrote:
 I’m having some numpy problems when using the package with Python.  My admin
 installed numpy for me and we think it’s installed right.  When I’m in
 python and type ‘import numpy’ I get the “Running numpy from source
 directory”. It doesn’t matter which directory I launch python out of, it
 always gives me the same errors and then can’t do anything simple like
 numpy.ones() or any other routine.  Any ideas?  Do I have a path variable
 set wrong?

Please do the following:

$ python
 import numpy
 print numpy.__file__


That should show you where the numpy on your sys.path is. Double-check
that it is in the place you think it is. If so, move to that directory
(e.g. /usr/lib/python2.5/site-packages/numpy/) and show us what is in
there:

$ cd /usr/lib/python2.5/site-packages/numpy/
$ ls


-- 
Robert Kern

I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth.
  -- Umberto Eco
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] numpy issues at startup

2009-06-02 Thread Turner, Todd J Civ USAF AFMC AFRL/RXLMP
All right, here goes...

 print numpy.__file__
/home/d1/turnertj/Python-2.5.4/lib/python2.5/site-packages/numpy/numpy/__init__.pyc

[turne...@daneel numpy]$ ls
add_newdocs.py  ctypeslib.pyc  dual.py  _import_tools.py  libnumarray   
 setup.py   tests
coredistutils  f2py __init__.py   linalg oldnumeric 
 setup.pyc  version.py
ctypeslib.pydocfft  __init__.pyc  matlib.py  random 
 testingversion.pyc




-Original Message-
From: numpy-discussion-boun...@scipy.org 
[mailto:numpy-discussion-boun...@scipy.org] On Behalf Of Robert Kern
Sent: Tuesday, June 02, 2009 2:24 PM
To: Discussion of Numerical Python
Subject: Re: [Numpy-discussion] numpy issues at startup

On Tue, Jun 2, 2009 at 13:19, Turner, Todd J Civ USAF AFMC AFRL/RXLMP
todd.tur...@wpafb.af.mil wrote:
 I’m having some numpy problems when using the package with Python.  My admin
 installed numpy for me and we think it’s installed right.  When I’m in
 python and type ‘import numpy’ I get the “Running numpy from source
 directory”. It doesn’t matter which directory I launch python out of, it
 always gives me the same errors and then can’t do anything simple like
 numpy.ones() or any other routine.  Any ideas?  Do I have a path variable
 set wrong?

Please do the following:

$ python
 import numpy
 print numpy.__file__


That should show you where the numpy on your sys.path is. Double-check
that it is in the place you think it is. If so, move to that directory
(e.g. /usr/lib/python2.5/site-packages/numpy/) and show us what is in
there:

$ cd /usr/lib/python2.5/site-packages/numpy/
$ ls


-- 
Robert Kern

I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth.
  -- Umberto Eco
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion


Re: [Numpy-discussion] numpy issues at startup

2009-06-02 Thread Robert Kern
On Tue, Jun 2, 2009 at 13:35, Turner, Todd J Civ USAF AFMC AFRL/RXLMP
todd.tur...@wpafb.af.mil wrote:
 All right, here goes...

 print numpy.__file__
 /home/d1/turnertj/Python-2.5.4/lib/python2.5/site-packages/numpy/numpy/__init__.pyc

That looks like it was definitely installed incorrectly, then. It
looks like the source package simply unpacked into site-packages. The
installation instructions are given in INSTALL.txt.

-- 
Robert Kern

I have come to believe that the whole world is an enigma, a harmless
enigma that is made terrible by our own mad attempt to interpret it as
though it had an underlying truth.
  -- Umberto Eco
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion