In this video we’ll start to look at building GUI apps with Python and Kivy by installing Kivy for Windows.

*NOTE: if you have trouble installing with Python 3.8 or above, try this instead:
pip install kivy==2.0.0rc2

(The current version of Kivy works on Python 3.7 and below)

Kivy is a great cross-platform GUI app building framework for Python. In this playlist I’ll teach you everything you need to build awesome GUI apps for Python and Kivy

Code:

import kivy
from kivy.app import App
from kivy.uix.label import Label


class MyApp(App):
	def build(self):
		return Label(text="Hello World", font_size=72)


if __name__ == '__main__':
	MyApp().run()


John Elder

John is the CEO of Codemy.com where he teaches over 100,000 students how to code! He founded one of the Internet's earliest advertising networks and sold it to a publicly company at the height of the first dot com boom. After that he developed the award-winning Submission-Spider search engine submission software that's been used by over 3 million individuals, businesses, and governments in over 42 countries. He's written several Amazon #1 best selling books on coding, and runs a popular Youtube coding channel.

View all posts

Add comment

Your email address will not be published. Required fields are marked *

John Elder