Python:NSInvalidArgumentException

时间:2019-04-28 15:05:24

标签: python-3.x matplotlib

尝试运行绘图功能时出现以下错误:

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSApplication _setup:]: unrecognized selector sent to instance 0x7fb299cb3fc0'

我已经在此网站上检查了其他问题,但没有发现任何NSApplication _setup错误。

以下是我正在使用的代码:

import easygui as gui
import matplotlib.pyplot as plt
def plots(plotLabel, XLabel, YLabel,XValues,YValues) :
   plt.xlabel(XLabel, fontsize=16)
   plt.ylabel(YLabel, fontsize=16)
   plt.suptitle(plotLabel, fontsize=20)
   plt.plot(XValues,YValues)
   plt.show()
button=gui.buttonbox("ScatterPlot")

0 个答案:

没有答案