Open kbonnen opened 2 years ago
@kait-young @rachel-allison
One of you could give this a try ☝️.
You'll need to run blender from a commandline prompt on windows: https://docs.blender.org/manual/en/2.79/render/workflows/command_line.html#platforms
The key part of the email is this: MESA_GL_VERSION_OVERRIDE=3.3 ./blender
When I tried that, the following error message appeared:
"MESA_GL_VERSION OVERRIDE" is not recognized as an internal or external command, operable program or batch file.
Can you try this in Linux as well?
Also did you do this in the anaconda windows terminal or the "command prompt"
I did it in the anaconda windows terminal and can try it in Linux now
Blender is able to run in Linux (without the override statement).
Let's try to get freemocap running on linux once more:
sudo apt install ffmpeg
. The password is the same as the login git clone https://github.com/freemocap/freemocap.git
Vpixx suggests:
Hello Kathryn,
I am going to guess this is simply a problem with the current default AMD drivers that come with Ubuntu. The card is of course compatible with OpenGL 3.3 but might be set to a default version of 3.0.
You can find the version string with glxinfo:
glxinfo | grep OpenGL
To be able to run OpenGL 3.3, I found that launching your program while adding MESA_GL_VERSION_OVERRIDE=3.3 at the start of the command could fix it.
Ex:
MESA_GL_VERSION_OVERRIDE=3.3 ./blender
Let me know if that solves your issue.