Genesis icon indicating copy to clipboard operation
Genesis copied to clipboard

Failed to import the metaworld environment.

Open zlm200 opened this issue 10 months ago • 0 comments

Screenshot from 2024-12-20 14-59-34

I encountered the following issue when directly importing the task's XML in the metaworld environment. Objects in the environment are missing, and I made sure to place all the necessary files in the correct locations. I'm not sure why it's incompatible?

My code is following:

import genesis as gs gs.init(backend=gs.cpu)

scene = gs.Scene(show_viewer=True) plane = scene.add_entity(gs.morphs.Plane()) franka = scene.add_entity( gs.morphs.MJCF(file='xml/assets_v2/sawyer_xyz/sawyer_pick_place_v2.xml'), )

scene.build() while True: scene.step()

zlm200 avatar Dec 20 '24 07:12 zlm200