From: Charlie M. <cw...@gm...> - 2006-08-19 16:51:46
|
On 8/18/06, assiss <as...@16...> wrote: > From: "Charlie Moad" <cw...@gm...> > To: "assiss" <as...@16...> > Date: Fri, 18 Aug 2006 20:20:59 +0800 (CST) > Subject: Re: [Matplotlib-users] python coredump when using GtkAgg mode > > Thanks. > > 9 import matplotlib._image #worked > 10 import matplotlib._transforms #worked > 11 > 12 #one of these three depending on which numerix package you are using > 13 import matplotlib.backends._na_backend_agg # for > numarray, worked > 14 import matplotlib.backends._nc_backend_agg # for > Numeric, worked > 15 import matplotlib.backends._ns_backend_agg # for numpy, > failed, because I didn't install numpy. > 16 > 17 import matplotlib.backends._tkagg #worked > 18 import matplotlib._agg #worked Since your error was with gtk try: import matplotlib.backends._gtkagg I am guessing that will fail. You might try reinstalling gtk and pygtk. I doubt anyone has NetBSD to confirm your error though. |