Tkinter窗口在蟒蛇下打开为黑色

时间:2019-03-02 10:11:14

标签: python tkinter anaconda

我正在Mac上运行anaconda 3.7,并希望使用Tkintertools。当我运行下面的简单教程Tkinter脚本时,我得到了一个完全黑色的窗口。如果我使用python 2.7,则将“ import tkinter”更改为“ import Tkinter”后,它可以正常工作,窗口和文本正确显示。有什么想法吗?

from tkinter import Tk, Label, Button

class MyFirstGUI:
    def __init__(self, master):
        self.master = master
        master.title("A simple GUI")

        self.label = Label(master, text="This is our first GUI!")
        self.label.pack()

        self.greet_button = Button(master, text="Greet", command=self.greet)
        self.greet_button.pack()

        self.close_button = Button(master, text="Close", command=master.quit)
        self.close_button.pack()

    def greet(self):
        print("Greetings!")

root = Tk()
root.configure(background='white')
my_gui = MyFirstGUI(root)
root.mainloop()

1 个答案:

答案 0 :(得分:0)

在Mac上,某些版本的Python和Tcl / Tk之间存在一个不兼容的已知问题。 Here's a bug report在IDLE出现问题的地方,以及here's a description在python.org上出现的问题。

对于我来说,我通过将conda环境的Tk从8.6.9降级到8.6.8来解决此问题:

$ conda install tk=8.6.8