Mac OS 10.12.9 Python 3.6.* matplotlib 2.0.2
Un outil pratique pour dessiner des graphiques avec python
Probablement, si vous essayez d'utiliser matplotlib sans créer de fichier de configuration, vous obtiendrez l'erreur suivante.
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. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more information.
J'ai évoqué ce débordement de pile. Installation Issue with matplotlib Python [duplicate]
Créez un fichier appelé matplotlibrc sous ~ / .matplotlib / et ajoutez le code suivant.
matplotlibrc
backend: TkAgg
Si vous enregistrez cela, vous pourrez l'importer immédiatement sans aucun problème.
Je suis resté coincé au même endroit il y a environ deux ans, J'ai complètement oublié et j'ai eu la même erreur sur mon nouveau mac.
Je vous remercie pour votre travail acharné.
Recommended Posts