尝试使用Tkinter时出现以下错误:
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSApplication _setup:]: unrecognized selector sent to instance 0x7f80e70137e0'
我在下面的代码中的一个类中使用它:
from Tkinter import *
class Interface():
def __init__(self):
root = Tk()
w = Label(root, text="Hello, world!")
w.pack()
root.mainloop()
使用以下代码在单独的文件中调用代码:
from Interface import *
Interface()
我在这里做错了什么?