반응형
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
반응형
'파이썬' 카테고리의 다른 글
파이썬 목록을 다시 정렬하려면 어떻게해야합니까? (0) | 2020.12.22 |
---|---|
파이썬 Python의 numpy ndarray에서 비 NaN 요소 수 계산 (0) | 2020.12.22 |
파이썬 sqlalchemy는 NULL이 아닙니다. (0) | 2020.12.22 |
파이썬 괄호없이 함수를 호출하는 목적 python (0) | 2020.12.22 |
파이썬 밀리 초가있는 epoch 시간을 datetime으로 변환 (0) | 2020.12.22 |
댓글