Tkinter look (theme) in Linux
问题 I know that Tkinter is not so modern, not so cool and maybe better to use PyQt or etc. But it is interesting for me can Tkinter looks not so ugly in Ubuntu (Linux). Looks that brew version (in OS X) of python's Tkinter compiled with built-in theme and looks good: But Ubuntu's Tkinter makes me cry: I've read that for good theme I need to use ttk, but I dont know exactly how. My code looks as follow: from Tkinter import * class App(): def __init__(self, master): frame = Frame(master) frame.pack