Skip to content

Instantly share code, notes, and snippets.

@ellisbrown
Created February 26, 2022 23:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ellisbrown/3562ec7f21c99ac5276bb673098ce82b to your computer and use it in GitHub Desktop.
Save ellisbrown/3562ec7f21c99ac5276bb673098ce82b to your computer and use it in GitHub Desktop.
Install MuJoCo 200 Linux
MUJOCO_DIR=~/.mujoco
mkdir -p $MUJOCO_DIR
wget https://roboti.us/download/mujoco200_linux.zip -O $MUJOCO_DIR/mujoco200.zip
unzip $MUJOCO_DIR/mujoco200.zip
wget https://roboti.us/file/mjkey.txt -P $MUJOCO_DIR
rm $MUJOCO_DIR/mujoco200.zip
# symlink to mujoco200 (this is what mujoco-py looks for)
ln -s $MUJOCO_DIR/mujoco200_linux $MUJOCO_DIR/mujoco200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment