开发者社区> 问答> 正文

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
f```  
ramework, or try one of the other backends.

展开
收起
祖安文状元 2020-02-21 14:18:24 640 0
1 条回答
写回答
取消 提交回答
  • 问题原因 在macOS图像渲染中,matplotlib的后端(默认情况下使用Cocoa的API进行渲染的后端是什么)。有Qt4Agg和GTKAgg,作为后端不是默认值。设置与其他Windows或linux os不同的macosx后端。

    我可以通过以下方式解决此问题:

    我假设您已经安装了pip matplotlib,您的根目录中有一个名为的目录~/.matplotlib。 在~/.matplotlib/matplotlibrc此处创建文件并添加以下代码:backend: TkAgg 从此链接,您可以尝试其他图表

    2020-02-21 14:18:30
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
From Python Scikit-Learn to Sc 立即下载
Data Pre-Processing in Python: 立即下载
双剑合璧-Python和大数据计算平台的结合 立即下载