稍后在代码中使用pyplot时,Tkinter GUI会重新打开

时间:2018-04-08 01:04:09

标签: python macos python-2.7 matplotlib tkinter

我创建了一个Tkinter GUI并作为独立代码成功关闭,但是当我尝试使用matplotlib.pylplot打开一个不相关的数字时,GUI重新出现。所使用的代码的缩短版本是为了简洁(问题仍然存在),我在MacOSX上使用python 2.7.14运行它

from Tkinter import *

def gui():

    root = Tk()
    frame = Frame(root)
    frame.place(x=600,y=600)

    label = Label(root, text="Folder for")
    label.place(x=30,y=160)
    button_exit = Button(root,
                         text="Exit",
                         command=root.destroy)

    button_exit.place(x=320,y=280)

    root.geometry("600x350")
    root.attributes("-topmost", True)
    root.mainloop()
gui()
import time

time.sleep(1.5)

from matplotlib import pyplot
figure = pyplot.figure()
pyplot.show()

0 个答案:

没有答案