contenu de l'erreur:
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. 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.
Il semble y avoir un problème de backend, donc je vais le réécrire.
$ python -c "import matplotlib;print(matplotlib.matplotlib_fname())"
/anaconda/envs/py3.5/lib/python3.5/site-packages/matplotlib/mpl-data/matplotlibrc
Puisque vous pouvez spécifier l'emplacement comme, déplacez-vous avec Finder.
Il existe un fichier appelé matplotlibrc, alors ouvrez-le avec un éditeur de texte et ouvrez-le.
backend : macosx
Si vous pouvez identifier la partie où elle est décrite, réécrivez-la comme suit et terminez.
backend : Tkagg
Recommended Posts