I downloaded OpenGL in multiple ways, using
conda install pyopengl
Yet, when I try to run my code I am given the error:
OpenGL.error.NullFunctionError: Attempt to call an undefined function glutInit, check for bool(glutInit) before calling
Which refers to the line:
glutInit(sys.argv)
I'm not sure what is going on here. The code worked just fine on my linux computer. Did I install OpenGL in the wrong place?
Edit: I was pointed to this post: Attempt to call an undefined function glutInit. One can download the files separately in a .whl file, and then install it using pip. I am confused because I use anaconda. I am not sure how to work with .whl's as I have not seen them before. I followed the directions of the above link, but to no avail.