Note: This tutorial assumes that you have completed the previous tutorials: ROS Tutorials.

Installing the TurtleBot Simulator

Description: This tutorial will step you through installing the TurtleBot simulator on your Ubuntu desktop.

Tutorial Level: BEGINNER

Next Tutorial: Running the TurtleBot Simulator

Overview

The TurtleBot simulator currently depends on the electric version of gazebo. These installation instructions will guide you through setting up the TurtleBot SDK on Ubuntu Lucid or Maverick.

Configure your Ubuntu repositories

Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.

Setup your sources.list

Setup your computer to accept software from ROS.org.

  • Ubuntu 10.04 (Lucid)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu lucid main" > /etc/apt/sources.list.d/ros-latest.list'

    Ubuntu 10.10 (Maverick)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu maverick main" > /etc/apt/sources.list.d/ros-latest.list'

    Ubuntu 11.04 (Natty)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu natty main" > /etc/apt/sources.list.d/ros-latest.list'

    Ubuntu 11.10 (Oneiric)

    • sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu oneiric main" > /etc/apt/sources.list.d/ros-latest.list'

Set up your keys

  • wget http://packages.ros.org/ros.key -O - | sudo apt-key add -

Install the software

  • sudo apt-get update 
    
    sudo apt-get install ros-electric-turtlebot-simulator-desktop

    or click here

Environment setup

It's convenient if the ROS environment variables are automatically added to your bash session every time a new shell is launched:

echo "source /opt/ros/electric/setup.bash" >> ~/.bashrc
. ~/.bashrc

If you have more than one ROS distribution installed, ~/.bashrc must only source the setup.bash for the version you are currently using.

If you just want to change the environment of your current shell, you can type:

source /opt/ros/electric/setup.bash

Wiki: turtlebot_simulator/Tutorials/Installing TurtleBot Simulator (last edited 2011-11-24 01:06:30 by TullyFoote)