Soy nuevo usuario de matplotlib, mi plataforma es Ubuntu 10.04 Python 2.6.5¿Cómo puedo configurar el 'back-end' en matplotlib en Python?
Este es mi código
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
plt.plot([1,2,3])
El error es:
/usr/local/lib/python2.6/dist-packages/matplotlib/backends/__init__.py:41: UserWarning:
Your currently selected backend, 'agg' does not support show().
Please select a GUI backend in your matplotlibrc file ('/usr/local/lib/python2.6/dist-packages/matplotlib/mpl-data/matplotlibrc')
or with matplotlib.use()
(backend, matplotlib.matplotlib_fname()))
- he instalado el anti -Grain Geometry library
apt-get install libagg
pero no funciona. - Intenté usar otro argumento de backend como 'GTK' y 'TkAgg'.
- Instalé el paquete
python-gtk2-dev
, pero el error sigue apareciendo. - ¿Alguien puede decirme un argumento de back-end ejecutable y su biblioteca de dependencia?
Aquí está el error:
>>> matplotlib.use('GTK')
>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.6/dist-packages/matplotlib/pyplot.py", line 95, in <module>
new_figure_manager, draw_if_interactive, show = pylab_setup()
File "/usr/local/lib/python2.6/dist-packages/matplotlib/backends/__init__.py", line 25, in pylab_setup
globals(),locals(),[backend_name])
File "/usr/local/lib/python2.6/dist-packages/matplotlib/backends/backend_gtk.py", line 28, in <module>
from matplotlib.backends.backend_gdk import RendererGDK, FigureCanvasGDK
File "/usr/local/lib/python2.6/dist-packages/matplotlib/backends/backend_gdk.py", line 29, in <module>
from matplotlib.backends._backend_gdk import pixbuf_get_pixels_array
ImportError: No module named _backend_gdk
muchas gracias el personal mal que hice es la configuración matplotlib antes de llegar PyGTK – user504909
como un comentario al margen, me gustaría tratar QTAgg pasado como que se dirige a QT3 y probablemente será obsoleto en el mediano plazo. – tacaswell