Sorry! Kite only runs on processor architectures with AVX support code example
Example: Sorry! Kite only runs on processor architectures with AVX support. Exiting now.
from kivy.app import App
from kivy.uix.label import Label
class FirstKivy(App):
def build(self):
return Label(text="Hello Kivy!")
FirstKivy().run()