|
From: John H. <jdh...@ac...> - 2004-12-18 16:25:35
|
>>>>> "Gary" == Gary <pa...@in...> writes:
Gary> I changed axes.py to remove 'min' from the 'from numerix
Gary> import ...' line.
Gary> Now it chokes on the very next line, from numerix import max
Gary> as nxmax
Let's be systematic. From the python shell, what happens when you do
>>> import Numeric, MLab
>>> Numeric.__version__
>>> from MLab import min, max
>>> import matplotlib
>>> matplotlib.__version__
>>> from matplotlib.numerix import min, max
This will help narrow down whether it's a matplotlib or Numeric
problem. Check the reported version numbers to make sure the numeric
upgrade went as expected.
Do you have only one python installed on your system?
Gary> Am I the only one suffereing from this? Isn't this impossible?
My win32 setup appears to be working fine. It's clearly not
impossible <wink>. Can we get some positive confirmation from other
win32 users that 0.65 is working for them?
JDH
|