in kivy with pyton tutorial 10, I tried to run the code in my computer but it is giving some errors i have tried to solve it but it is still showing that error. here is the code:
import kivy kivy.require('1.10.0') from kivy.app import App from kivy.lang.builder import Builder from kivy.uix.screenmanager import ScreenManager, Screen, FadeTransition
class MainScreen(Screen): pass
class AnotherScreen(Screen): pass
class ScreenManagement(ScreenManager): pass
presentation = Builder.load_file("main.kv")
class MainApp(App): def build(self): return presentation