0

enter image description here

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()
Abhinav
  • 31
  • 1
  • 5

1 Answers1

1

Looks like you need to install OpenGl 2.0 or higher as it says. You can download the latest version here. This is just a graphics driver, software to interact with your gpu. If you use nvidia you can even automatically download any necessary drivers from their Geforce Experience program, but I'm not sure about AMD or integrated graphics.

However, if you already have version 2.0 or above and the error persists, try one of the answers found here

Rolv Apneseth
  • 2,078
  • 2
  • 7
  • 19