Skip to content

Instantly share code, notes, and snippets.

@samkeen
Last active September 29, 2015 17:36
Show Gist options
  • Save samkeen/9b5a1628364be3746fa5 to your computer and use it in GitHub Desktop.
Save samkeen/9b5a1628364be3746fa5 to your computer and use it in GitHub Desktop.

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment