Error with OpenGl in Python

0
(k36) C:\Users\rudij\Desktop\etapa 1>python main.py
[INFO   ] [Logger      ] Record log in C:\Users\rudij\.kivy\logs\kivy_18-02-02_3.txt
[INFO   ] [Kivy        ] v1.10.0
[INFO   ] [Python      ] v3.6.4 |Anaconda, Inc.| (default, Jan 16 2018, 10:22:32) [MSC v.1900 64 bit (AMD64)]
[INFO   ] [Factory     ] 194 symbols loaded
[INFO   ] [Image       ] Providers: img_tex, img_dds, img_sdl2, img_gif (img_pil, img_ffpyplayer ignored)
[INFO   ] [OSC         ] using <thread> for socket
[INFO   ] [Window      ] Provider: sdl2
[INFO   ] [GL          ] Using the "OpenGL" graphics system
[INFO   ] [GL          ] GLEW initialization succeeded
[INFO   ] [GL          ] No framebuffers extension is supported
[INFO   ] [GL          ] Backend used <glew>
[INFO   ] [GL          ] OpenGL version <b'1.1.0'>
[INFO   ] [GL          ] OpenGL vendor <b'Microsoft Corporation'>
[INFO   ] [GL          ] OpenGL renderer <b'GDI Generic'>    
[INFO   ] [GL          ] OpenGL parsed version: 1, 1
[CRITICAL] [GL          ] Minimum required OpenGL version (2.0) NOT found!

OpenGL version detected: 1.1

Version: b'1.1.0'
Vendor: b'Microsoft Corporation'
Renderer: b'GDI Generic'

Try upgrading your graphics drivers and/or your graphics hardware in case of problems.

The application will leave now.

Error Print I always come across this error when trying to run any kind of program that uses some graphical interface, searching the internet I found some probable solutions but none of them brought me success. Note: I have already updated the drives.

    
asked by anonymous 02.02.2018 / 22:52

1 answer

0

I was able to solve the problem and hope it helps others.

I pasted this address into the same windows search bar (% HOMEPATH% .kivy \ config.ini for me)

Then I changed the values here from multisamples = 2 to multisamples = 0.

    
03.02.2018 / 01:43