Open RaedShabbir opened 2 months ago
Specifically this seems to occur in dm_control/composer/observation/updater.py
for enabled in self._enabled_list:
first_delay = _call_if_callable(enabled.delay)
enabled.buffer.insert(
0, first_delay,
enabled.observation_callable())
When we call enabled.observation_callable() for the following enabled
enabled
<dm_control.composer.observation.updater._EnabledObservable object at 0x13fabbf40>
function variables
buffer =
<dm_control.composer.observation.obs_buffer.Buffer object at 0x14912cc70>
buffer_size =
1
delay =
0
observable =
**<dm_control.composer.observation.observable.base.MujocoCamera object at 0x1481a5690>**
update_interval =
1
update_schedule =
deque([])
_bind_attribute_from_observable =
<bound method _EnabledObservable._bind_attribute_from_observable of <dm_control.composer.observation.updater._EnabledObservable object at 0x13fabbf40>>
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.