This is the content of the Kiwi file:
# File name: hello2.kv #: kivy 1.9.0 <Label>: text: "Hello world!" This is a python:
import kivy kivy.require ('1.9.0') from kivy.app import App from kivy.uix.button import Label class Hello2App(App): def build(self): return Label() if __name__ == "__main__": Hello2App().run() What is the problem, please help? What does not work?

kivyin the code and at startup? - titov_andrei