|
From: John H. <jdh...@ac...> - 2004-09-16 21:30:45
|
>>>>> "Stephen" == Stephen Walton <ste...@cs...> writes:
Stephen> I'm doing something wrong, obviously, but am not sure
Stephen> what. I have Numeric 23.1 (and numarray 1.1) installed
Stephen> under Python 2.2 on Fedora Core 1, and matplotlib 0.62.4.
Stephen> Attempts to do an imshow() result in an error message
Stephen> that "pygtk was not compiled with Numeric Python
Stephen> support."
My guess is you are using a precompiled pygtk (eg the one that ships
with FC1). You'll probably need to compile pygtk from src, with
threads and numpy support
> ./configure --enable-thread --enable-numpy
> sudo make install
Alternatively, you could simply use the gtkagg backend, in which case
you won't need gtk with numpy support.
JDH
|