admin管理员组文章数量:1347654
I’m running RL experiments using IsaacGym (and MuJoCo) on a headless Linux GPU server (Ubuntu 20.04, NVIDIA A100) via SSH from my MacBook. The server does not have a GUI installed, so I need to render the simulation output locally on my Mac.
I’ve tried the following approaches:
VNC with Xvfb: I set up Xvfb and x11vnc to create a virtual display and forward it to my Mac. I can connect with RealVNC Viewer and it would display plt and tkinter figure, but the display resolution and quality are poor. As for IsaacGym and MuJoCo, render window does not update properly.
Here is an example:
def mujoco():
env = gym.make('Ant-v3')
obs = env.reset()
print("Starting Mujoco environment rendering test...")
for step in range(1000):
env.render()
action = env.action_space.sample()
obs, reward, done, info = env.step(action)
time.sleep(0.1)
if done:
obs = env.reset()
env.close()
# -- output of trying to render the MuJoCo env --
...# Omit other outputs above
File "Anaconda3/envs/rl_env/lib/python3.8/site-packages/mujoco_py/opengl_context.pyx", line 48, in mujoco_py.cymj.GlfwContext.__init__
self.window = self._create_window(offscreen, quiet=quiet)
File "Anaconda3/envs/rl_env/lib/python3.8/site-packages/mujoco_py/opengl_context.pyx", line 99, in mujoco_py.cymj.GlfwContext._create_window
raise GlfwError("Failed to create GLFW window")
mujoco_py.cymj.GlfwError: Failed to create GLFW window
- VirtualGL: I attempted to use VirtualGL but encountered issues installing it on my server.
Has anyone encountered this issue? What is the best approach to render IsaacGym (or MuJoCo) output from a headless Linux GPU server to a MacBook? Thanks~!
Settings:
- Local: M2, Sequoia 15.3.2
- Remote: Ubuntu Linux, 20.04
- Python version: 3.8
本文标签:
版权声明:本文标题:openai gym - How can I render IsaacGym (or MuJoCo) output from a headless Linux GPU server to my MacBook? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743838765a2547891.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论