Matplotlib不适用于Mac

时间:2017-11-10 16:56:57

标签: python matplotlib

我在macOS High Sierra上运行Python 2.7.14,当我运行matplotlib脚本时,情节没有显示,脚本挂起。我已尝试多次编辑我的~/.matplotlib/matplotlibrc文件,尝试了很多后端,正如其他答案所示,但问题仍然存在。

请帮忙。

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。解决方案是在我使用wxPython GUI的情况下使用不同的后端。

matplotlib.use('WxAgg')
如果你想只是绘制图形,你可能需要添加一行plt.show(block = True)。

请看这里有一个非常类似的问题。 Matplotlib fails and hangs when plotting in interactive mode