美文网首页
matplotlib安装成功,使用import matplotl

matplotlib安装成功,使用import matplotl

作者: 红茶绅士 | 来源:发表于2017-05-23 11:40 被阅读460次

    出现的问题:

    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. If you are using (Ana)Conda please install python.app and replace the use of 'python' with 'pythonw'. See 'Working with Matplotlib on OSX' in the Matplotlib FAQ for more information.

    出现的原因:

    在Mac OS X的图像渲染后端,默认使用的是cocoa的API.这里我们需要自己设置为TkAgg.

    解决方法

    • matplotlib安装成功后,会在根目录生成.matplotlib的文件夹,在终端使用cd命令进入.
    $ cd .matplotlib/
    
    • 创建一个文件命名为:matplotlibrc,并添加内容:backend: TkAgg.
      ps.可以用vim编译器创建文件并插入内容
    $ vim matplotlibrc
    

    参考资料:stackoverflow

    相关文章

      网友评论

          本文标题:matplotlib安装成功,使用import matplotl

          本文链接:https://www.haomeiwen.com/subject/bwmwxxtx.html