pyplot - Problema de instalación con matplotlib Python
matplotlib title position (1)
Esta pregunta ya tiene una respuesta aquí:
- Python matplotlib framework bajo macosx? 9 respuestas
Tengo problema después de instalar el paquete matplotlib que no puede importar matplotlib.pyplot como plt . Cualquier sugerencia será muy apreciada.
>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/pyplot.py", line 98, in <module>
_backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/backends/__init__.py", line 28, in pylab_setup
globals(),locals(),[backend_name],0)
File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/backends/backend_macosx.py", line 21, in <module>
from matplotlib.backends import _macosx
**RuntimeError**: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework. See the Python documentation for more information on installing Python as a framework on Mac OS X. Please either reinstall Python as a framework, or try one of the other backends.
Problema Causa En el procesamiento de imágenes mac os de la parte trasera de matplotlib (what-is-a-backend para renderizar usando la API de Cocoa de manera predeterminada). Hay Qt4Agg y GTKAgg y como back-end no es el predeterminado. Establezca el extremo posterior de macosx que sea diferente en comparación con otras ventanas o sistemas operativos de Linux.
Resuelvo este problema de la siguiente manera:
- Supongo que ha instalado el pip matplotlib, hay un directorio en su raíz llamado
~/.matplotlib
. - Cree un archivo
~/.matplotlib/matplotlibrc
allí y agregue el siguiente código:backend: TkAgg
Desde este link puedes probar diferentes diagramas.