Se imposto il mio backend su template
in ~/.matplotlib/matplotlibrc
, posso riprodurre i tuoi sintomi:
~ / .Matplotlib / matplotlibrc:
# backend : GtkAgg
backend : template
Si noti che il file matplotlibrc
potrebbe non essere nella directory ~/.matplotlib/
. In questo caso, il codice seguente mostra dove si trova:
>>> import matplotlib
>>> matplotlib.matplotlib_fname()
In [1]: import matplotlib.pyplot as p
In [2]: p.plot(range(20),range(20))
Out[2]: [<matplotlib.lines.Line2D object at 0xa64932c>]
In [3]: p.show()
Se modifichi ~/.matplotlib/matplotlibrc
e cambi il backend in qualcosa del genere GtkAgg
, dovresti vedere una trama. Puoi elencare tutti i backend disponibili sul tuo computer con
import matplotlib.rcsetup as rcsetup
print(rcsetup.all_backends)
Dovrebbe restituire un elenco come:
['GTK', 'GTKAgg', 'GTKCairo', 'FltkAgg', 'MacOSX', 'QtAgg', 'Qt4Agg',
'TkAgg', 'WX', 'WXAgg', 'CocoaAgg', 'agg', 'cairo', 'emf', 'gdk', 'pdf',
'ps', 'svg', 'template']
Riferimento:
ImportError: No module named _backend_gdk