エラー内容:
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.
バックエンドの問題が発生しているようなので書き換えに行きます。
$ python -c "import matplotlib;print(matplotlib.matplotlib_fname())"
/anaconda/envs/py3.5/lib/python3.5/site-packages/matplotlib/mpl-data/matplotlibrc
みたいに場所が特定できますのでFinderで移動。
matplotlibrc というファイルがあるのでテキストエディタで開き、
backend : macosx
と記述してある箇所を特定できたら以下のように書き換えて完了。
backend : Tkagg