How to downgrade Mujoco version?

187 views Asked by At

I installed mujoco using pip install gymnasium[mujoco], how can i downgrade it to mujoco==2.3.0? I tried to uninstall it then pip install gymnasium[mujoco]==2.3.0 but it seems to have some error in syntax.

1

There are 1 answers

0
Kallinteris Andreas On

this should do it

pip install gymnasium[mujoco]  # install all mujoco dependencies used for simulation and rendering
pip install mujoco==2.3.0  # downgrade just the mujoco simulator