error contents:
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.
There seems to be a backend problem, so I'm going to rewrite it.
$ python -c "import matplotlib;print(matplotlib.matplotlib_fname())"
/anaconda/envs/py3.5/lib/python3.5/site-packages/matplotlib/mpl-data/matplotlibrc
Since you can specify the location like this, move it with Finder.
There is a file called matplotlibrc, so open it with a text editor and open it.
backend : macosx
If you can identify the part where it is described, rewrite it as follows and complete.
backend : Tkagg
Recommended Posts