from matplotlib import pyplotエラー処理

2116 ワード

Macの2番目のPython環境にmatplotlibをインストールした後、次のコードをテストします.
from matplotlib import pyplot   //  
pyplot.plot([1,2,3,4], [1,4,9,16])  //  
pyplot.show()       //  

しかし、最初の行を入力すると、エラーが検出されました.
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 Working with Matplotlib in a virtual enviroment see ‘Working with Matplotlib in Virtual environments’ in the Matplotlib FAQ

解決策も簡単です.
vim ~/.matplotlib/matplotlibrc 

次に、次のように入力します.
backend: TkAgg