Proj-2013-2014-RobAIR-2/getStarted: Difference between revisions
(Created page with "= Requirement = * Ubuntu OS, but ONLY one of the following version : 12.04 (LTS The Precise Pangolin), 12.10 (The Quantal Quetzal) or 13.04 (The Raring Ringtail) * An Interne...") |
No edit summary |
||
| Line 9: | Line 9: | ||
First of all, you need to install ROS = |
First of all, you need to install ROS = |
||
== |
== Set up your sources.list == |
||
Proceed as follow (depending of your version) : |
Proceed as follow (depending of your version) : |
||
| Line 42: | Line 42: | ||
<nowiki></nowiki></code> |
<nowiki></nowiki></code> |
||
|} |
|} |
||
== Installation == |
|||
Make sure everything is up-to-date : |
|||
{| class="wikitable centre" width="80%" |
|||
|- |
|||
| align=left | <code><nowiki></nowiki> |
|||
sudo apt-get update |
|||
<nowiki></nowiki></code> |
|||
|} |
|||
Then install the most complete ROS installation : |
|||
{| class="wikitable centre" width="80%" |
|||
|- |
|||
| align=left | <code><nowiki></nowiki> |
|||
sudo apt-get install ros-hydro-desktop-full |
|||
<nowiki></nowiki></code> |
|||
|} |
|||
Now take a break and watch your computer working. |
|||
== Initialize rosdep == |
|||
Rosdep is used to easily install system dependencies : |
|||
{| class="wikitable centre" width="80%" |
|||
|- |
|||
| align=left | <code><nowiki></nowiki> |
|||
sudo rosdep init |
|||
rosdep update |
|||
<nowiki></nowiki></code> |
|||
|} |
|||
= Run a ROS package = |
= Run a ROS package = |
||
Revision as of 22:37, 27 January 2014
Requirement
- Ubuntu OS, but ONLY one of the following version : 12.04 (LTS The Precise Pangolin), 12.10 (The Quantal Quetzal) or 13.04 (The Raring Ringtail)
- An Internet connection
- Patience and terminal skills
ROS installation
First of all, you need to install ROS =
Set up your sources.list
Proceed as follow (depending of your version) :
- 12.04 (LTS The Precise Pangolin
|
- 12.10 (The Quantal Quetzal)
|
- 13.04 (The Raring Ringtail)
|
Set up your key
|
Installation
Make sure everything is up-to-date :
|
Then install the most complete ROS installation :
|
Now take a break and watch your computer working.
Initialize rosdep
Rosdep is used to easily install system dependencies :
|