1. ホーム
  2. python

[解決済み] matplotlib Pythonのインストールに関する問題 [重複]。

2022-03-19 12:26:52

質問

をインストールした後、問題が発生しました。 matplotlib パッケージは matplotlib.pyplot を plt としてインポートする。 . 何かご指摘がありましたら、よろしくお願いします。

>>> import matplotlib.pyplot as plt
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/pyplot.py", line 98, in <module>
    _backend_mod, new_figure_manager, draw_if_interactive, _show = pylab_setup()
  File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/backends/__init__.py", line 28, in pylab_setup
    globals(),locals(),[backend_name],0)
  File "//anaconda/lib/python2.7/site-packages/matplotlib-1.3.1-py2.7-macosx-10.5-x86_64.egg/matplotlib/backends/backend_macosx.py", line 21, in <module>
    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.

解決方法は?

問題の原因

mac osのmatplotlibの画像レンダリングのバックエンド(デフォルトでCocoaのAPIを使用してレンダリングするバックエンドは何か)です。バックエンドとしては、Qt4AggやGTKAggなどがあり、デフォルトではありません。他のWindowsやLinuxとは異なるmacosxのバックエンドを設定します。

解決方法

  • pip matplotlibをインストールしたと仮定して、あなたのルートにある ~/.matplotlib .
  • ファイルを作成する ~/.matplotlib/matplotlibrc に、以下のコードを追加してください。 backend: TkAgg

ここから リンク をクリックすると、いろいろな図を試すことができます。