본문 바로가기
Python/Python FAQ

matplotlib Python 설치 문제 [중복], Installation Issue with matplotlib Python [duplicate]

by 베타코드 2023. 10. 16.
반응형

질문


matplotlib 패키지를 설치한 후에 import matplotlib.pyplot as 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.

답변


문제 원인

맥 OS의 matplotlib 이미지 렌더링 백엔드 (기본적으로 Cocoa API를 사용하여 렌더링하는 것)에서는 Qt4Agg와 GTKAgg가 있으며 백엔드가 기본값이 아닙니다. 맥 OS의 백엔드는 다른 윈도우나 리눅스와 비교하여 다릅니다.

해결책

  • pip로 matplotlib를 설치했다고 가정하고, 루트 디렉토리에 ~/.matplotlib이라는 디렉토리가 있습니다.
  • ~/.matplotlib/matplotlibrc라는 파일을 생성하고 다음 코드를 추가합니다: backend: TkAgg

링크에서 다양한 다이어그램을 시도해볼 수 있습니다.

반응형

댓글