安装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
f```
ramework, or try one of the other backends.
问题原因 在macOS图像渲染中,matplotlib的后端(默认情况下使用Cocoa的API进行渲染的后端是什么)。有Qt4Agg和GTKAgg,作为后端不是默认值。设置与其他Windows或linux os不同的macosx后端。
我可以通过以下方式解决此问题:
我假设您已经安装了pip matplotlib,您的根目录中有一个名为的目录~/.matplotlib。 在~/.matplotlib/matplotlibrc此处创建文件并添加以下代码:backend: TkAgg 从此链接,您可以尝试其他图表
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。