Open
Description
Hi there,
my program is crashing when calling the start() method on the MjViewer object.
self._viewer_main = mujoco_py.MjViewer(visible=True, init_width=AGENT_MUJOCO['image_width'],
init_height=AGENT_MUJOCO['image_height'])
self._viewer_main.start()
The context for this code is here
It only crashes when running it on a desktop machine with the nvidia 1080, but runs without erros on my laptop with a much older graphics card.
When tracking the error down in 'self._viewer_main.start()' it appears to be crashing:
just here
Unfortunately I'm not getting a stack trace. It just says: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV) So it seems its crashing inside glfw?
Any hints how to investigate this further?