I have inserted a picture, In this it is showing error while running file of python by using 'kivy' module, can someone tell me what i have to do to run this 'kivy' file , is i need to change my graphic card or what I have to do someone tell
This is he file that I am trying to run
import kivy from kivy.app import App from kivy.uix.label import Label
class MyApp(App):
def build(self):
return Label(text='hello')
if __name__ == "__main__":
MyApp().run()