最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

openai gym - How can I render IsaacGym (or MuJoCo) output from a headless Linux GPU server to my MacBook? - Stack Overflow

programmeradmin3浏览0评论

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:

  1. 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
  1. 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

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论