Created
June 12, 2019 13:50
-
-
Save anandbhaskaran/3695d91874829377e64e1f109d5fbd2b to your computer and use it in GitHub Desktop.
Revisions
-
Anand created this gist
Jun 12, 2019 .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,17 @@ set +e # Update gazebo repository wget http://packages.osrfoundation.org/gazebo.key -O - | apt-key add - sudo sh -c 'echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable xenial main" > /etc/apt/sources.list.d/gazebo-stable.list' sudo apt-get update # install required packages sudo apt-get install git docker.io gazebo7 # add user to group docker sudo groupadd docker sudo usermod -a -G docker $USER sudo service docker restart sudo chmod 666 /var/run/docker.sock set -e