You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This only occurs when using mjpython, a requirement for my script, where I use the passive viewer to view and interact with the environment.
with mujoco.viewer.launch_passive(
self._env.physics.model.ptr, self._env.physics.data.ptr, show_right_ui=False
) as viewer:
while viewer.is_running():
if self._reset_step:
ts = self._env.reset()
self._reset_step = False
step_start = time.time()
ts = self._env.step(self._joint_cmd)
self._joint_state = ts.observation["joint_positions"]
...
Would appreciate any workarounds or advice!
The text was updated successfully, but these errors were encountered:
Hello,
In order to use mujoco.passive_viewer on my m1 macbook I have to use
mjpython
command to launch it.But when I try to create an environment as follows
Launching this with
mjpython
results in the following errorThis only occurs when using
mjpython
, a requirement for my script, where I use the passive viewer to view and interact with the environment.The text was updated successfully, but these errors were encountered: