win2k+sp4, Py25, wxPy, numpy 1.0.1 from sourceforge
>
> The FloatCanvas demo is working very well.
glad to hear it, but I'm a bit confused. I just tried to run the
FloatCanvas that comes with 2.8's wx.lib, and it's not set up to use
numpy at all -- only Numeric or numarray -- do you have one of those
installed as well?
···
I added the following file to the Python25 home dir,
>
> numpath.pth which contains
> C:\Python25\Lib\site-packages\numpy\core
> C:\Python25\Lib\site-packages\numpy
-----
Well, I just installed numpy and only numpy (not the old modules like
numarray) as a beginner would do.
In the above paths, one line was for "import Numeric", the other
for "import Randomarray". I do not recall the bijection path -> module.
-----
Something is odd with your install, I can use numpy just fine without
messing with sys.path:
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.
>>> import numpy
>>> numpy.__version__
'1.0.1'
>>> import numpy.fft
>>> import numpy.linalg
-----
Shame on me. I always forget to use "dotted" module, if I except
os.path and wx.stc
Jean-Michel Fauth, Switzerland