Open rosanom opened 1 year ago
@rosanom Did you manage to solve this issue?
@0mdc not yet, I will try next week to solve the issue, I will eventually update this thread.
Hello @rosanom @0mdc, had the same issue when building for headless and with audio. Did you eventually have any idea?
I solve this problem by downgrading the cmake version to 3.14.4
pip uninstall cmake
pip install cmake==3.14.4
Hi, I'm trying to install a specific version of the simulator (v. 0.1.5), as requested by a third-party project. I followed the steps suggested in the build from source page but when I run the
python setup.py install --headless
command I experience the following error:Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY)
. The machine is a headless server with two nvidia GPUs, I manually installed the nvidia drivers launching a.run
file. If I run theecho $CUDA_VISIBLE_DEVICES
command the output is0,1
, launching theldconfig -N -v | grep libEGL
command the output is:With
locate libEGL_nvidia.so
the output is:I tried to add the path
/usr/lib/x86_64-linux-gnu
to theLD_LIBRARY_PATH
variable but it had no effect. Do you have any idea on what the problem could be? Thank you!