web-dev-qa-db-ja.com

Matplotlib Pythonのインストール問題

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.
470
J4cK

問題の原因 Mac OSでの画像レンダリングmatplotlibのバックエンド(デフォルトでCocoaのAPIを使用してレンダリングするバックエンド) Qt4AggとGTKAggがあり、バックエンドとしてはデフォルトではありません。他のウィンドウやLinux OSと比べて異なるmacosxのバックエンドを設定してください。

私は以下の方法でこの問題を解決します。

  • 私はあなたがpip matplotlibをインストールしたと仮定します、あなたの中に~/.matplotlibと呼ばれるディレクトリがあります。
  • そこにファイル~/.matplotlib/matplotlibrcを作成し、以下のコードを追加します:backend: TkAgg

これから リンク あなたは別の図を試すことができます。

1282
J4cK