본문 바로가기
파이썬

파이썬 matplotlib Python의 설치 문제

by º기록 2020. 12. 22.
반응형

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의 백엔드를 설정하십시오.

솔루션


 

참조 페이지 https://stackoverflow.com/questions/21784641

 

 

반응형

댓글