Last active
February 4, 2022 19:26
-
-
Save ellisbrown/94780eb9c1992a5b33ed33d20a41ac6d to your computer and use it in GitHub Desktop.
Revisions
-
ellisbrown revised this gist
Feb 4, 2022 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,4 +5,4 @@ MUJOCO_DIR=~/.mujoco mkdir -p $MUJOCO_DIR wget https://github.com/deepmind/mujoco/releases/download/$VERSION/mujoco-$VERSION-linux-$ARCH.tar.gz -O $MUJOCO_DIR/mujoco.tar.gz tar -xzf $MUJOCO_DIR/mujoco.tar.gz -C $MUJOCO_DIR rm $MUJOCO_DIR/mujoco.tar.gz -
ellisbrown renamed this gist
Feb 3, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ellisbrown renamed this gist
Feb 3, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ellisbrown created this gist
Feb 3, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ VERSION=2.1.1 ARCH=x86_64 MUJOCO_DIR=~/.mujoco mkdir -p $MUJOCO_DIR wget https://github.com/deepmind/mujoco/releases/download/$VERSION/mujoco-$VERSION-linux-$ARCH.tar.gz -O $MUJOCO_DIR/mujoco.tar.gz tar -xzf $MUJOCO_DIR/mujoco.tar.gz -C $MUJOCO_DIR rm -rf $MUJOCO_DIR/mujoco.tar.gz