pip install wxpython
import wxapp = wx.App(False)frame = wx.Frame(None, wx.ID_ANY, "Hollo World")frame.Show(True)app.MainLoop()