You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Hello, after downloading everything, I cannot start the program on the terminal. When entering the command start-video-annotator to run the program, I get this error: ('Unable to load OpenGL library', 'dlopen(OpenGL, 10): image not found', 'OpenGL', None). It seems Big Sur does not support OpenGL. I was wondering what are some suggestions as to runnin this program?
The text was updated successfully, but these errors were encountered:
If you are at ease to change already installed python library files, there is an ugly workaround that works.
If you go to the folder mentioned in the error you get and edit the ctypesloader.py file (should be something similar to: /Users/<your_user>/opt/anaconda3/envs/videoannotator/lib/python3.9/site-packages/OpenGL/platform/ctypesloader.py and search for the following line: fullName = util.find_library( name ) (should be line 79).
Replace that line with: fullName = "/System/Library/Frameworks/{}.framework/{}".format(name,name)
After that, save the file and try to run Python Video Annotator again. It should open without issues.
Describe the bug
Hello, after downloading everything, I cannot start the program on the terminal. When entering the command start-video-annotator to run the program, I get this error: ('Unable to load OpenGL library', 'dlopen(OpenGL, 10): image not found', 'OpenGL', None). It seems Big Sur does not support OpenGL. I was wondering what are some suggestions as to runnin this program?
The text was updated successfully, but these errors were encountered: