I downloaded pyOpenGL and when I import it, my program runs just fine. However, a problem occurs when I try to create a shader. Here is my code:
from OpenGL.GL import *
import OpenGL.GL.shaders
computeShader = OpenGL.GL.glCreateShader(GL_COMPUTE_SHADER)
When I try to run this code, it throws this error: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
Does anybody have any idea what is wrong or how I could fix this? Any help would be much appreciated. Thanks.