from kivy.app import App from kivy.uix.label import Label class ImportGUI(App): def build(self): root_widget = Label(text='Hello') return root_widget if __name__ == '__main__': ImportGUI().run()