> * What exactly did you do (or not do) that was effective (or > ineffective)? > Due to bug#889137 I modified one program line from this: > > from matplotlib.backends.backend_gtkagg import > NavigationToolbar2GTKAgg > > to this: > > from matplotlib.backends.backend_gtk3agg import > NavigationToolbar2GTKAgg
the proper way to switch backend is either by using the matplotlibrc configuration file or using `matplotlib.use(backend)` command, like: >>> import matplotlib as mpl >>> mpl.use('Gtk3Agg') >>> import matplotlib.pyplot as plt -- Sandro "morph" Tosi My website: http://sandrotosi.me/ Me at Debian: http://wiki.debian.org/SandroTosi G+: https://plus.google.com/u/0/+SandroTosi