# pip install wxpython
# pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/ wxPython


import wx

app = wx.App()
frame = wx.Frame(parent=None, title="Hello World")
frame.Show()
app.MainLoop()
