To install Kivy, you must:
- Download the latest version from http://kivy.org/#download
- Double-click to open it
- Drag the Kivy.app into your Applications folder
- Double click the makesymlinks script.
vi hello.py
# file: hello.py
from kivy.app import App
from kivy.uix.button import Button
class TestApp(App):
def build(self):
return Button(text='Hello World')
TestApp().run()
kivy hello.py