프로그래밍 언어/Python

Python의 matplotlib 설치 문제

Rateye 2021. 12. 4. 12:40
728x90
반응형
질문 : 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.
답변

문제 원인

mac os에서 이미지 렌더링은 matplotlib의 백엔드입니다 (기본적으로 Cocoa의 API를 사용하여 렌더링하는 백엔드는 무엇입니까). Qt4Agg 및 GTKAgg가 있으며 백엔드는 기본값이 아닙니다. 다른 Windows 또는 Linux OS와 비교하여 다른 macosx의 백엔드를 설정하십시오.

해결책

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

링크 에서 다른 다이어그램을 시도 할 수 있습니다.

출처 : https://stackoverflow.com/questions/21784641/installation-issue-with-matplotlib-python
728x90
반응형