Installation Issue with matplotlib Python
本问题已经有最佳答案,请猛点这里访问。
安装matplotlib包后出现问题,无法将matplotlib.pyplot导入为plt。任何建议都将不胜感激。
1 2 3 4 5 6 7 8 9 10 | >>> 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操作系统不同的MacOSX后端。
我通过以下方式解决此问题:
- 我假设您已经安装了pip matplotlib,您的根目录中有一个名为
~/.matplotlib 的目录。 - 在那里创建一个文件
~/.matplotlib/matplotlibrc 并添加以下代码:backend: TkAgg 。
从这个链接,你可以尝试不同的图表。