1#-*- coding: utf-8 -*-
2
3from kivy.app import App
4from kivy.uix.label import Label
5
6class TestApp(App):
7 def build(self):
8 return Label(text='Hello World')
9
10TestApp().run()
11
12
1[Python 3.5 Windows]
2python -m pip install kivy.deps.angle
3python -m pip install kivy
1from kivy.app import App
2from kivy.uix.button import Button
3
4class TestApp(App):
5 def build(self):
6 return Button(text='My Name is Vivek')
7
8TestApp().run()
9