web-dev-qa-db-fra.com

Problème d'installation avec matplotlib Python

J'ai un problème après l'installation du package matplotlib incapable de importer matplotlib.pyplot en tant que plt. Toute suggestion sera grandement appréciée.

>>> 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.
479
J4cK

Problème Cause Sous Mac OS, le rendu des images dans matplotlib (qu'est-ce-que-est un système à restituer à l'aide de l'API de Cocoa par défaut). Il y a Qt4Agg et GTKAgg et, en tant que back-end, ce n'est pas la valeur par défaut. Définissez le fond de macosx qui est différent de celui d’autres fenêtres ou Linux.

Je résous ce problème de différentes manières:

  • Je suppose que vous avez installé le pip matplotlib, il y a un répertoire dans votre racine appelé ~/.matplotlib.
  • Créez un fichier ~/.matplotlib/matplotlibrc et ajoutez le code suivant: backend: TkAgg

A partir de ce lien vous pouvez essayer différents diagrammes.

1299
J4cK