Differences between revisions 4 and 5
Revision 4 as of 2015-06-01 13:39:34
Size: 1151
Editor: ?JochenSprickerhof
Comment:
Revision 5 as of 2015-06-01 13:47:17
Size: 1236
Editor: ?JochenSprickerhof
Comment:
Deletions are marked like this. Additions are marked like this.
Line 15: Line 15:

=== Source repos ===
https://anonscm.debian.org/cgit/debian-science/packages/ros

Installation instruction to install ROS on Debian.

Motivation

Binary repos (containing ROS core and more)

Debian Stretch/Sid (amd64): deb http://sir.upc.edu/debian-robotics unstable main

Debian Jessie (amd64): deb http://sir.upc.edu/debian-robotics jessie-robotics main

Ubuntu Trusty: https://launchpad.net/~deb-rob/+archive/ubuntu/ros-trusty

Source repos

https://anonscm.debian.org/cgit/debian-science/packages/ros

Compile the rest of desktop-full

Installing the needed packages:

   1 $apt-get install ros-full-desktop-depends

Compile the rest:

   1 $ mkdir ~/ros
   2 $ cd ~/ros
   3 $ rosinstall_generator desktop_full --rosdistro indigo --deps --wet-only --tar --exclude RPP \
   4  ros ros_comm rosnode rosbuild roslang roswtf roslisp roscpp_core common_msgs \
   5  common_tutorials geometry_tutorials ros_tutorials visualization_tutorials \
   6  urdf_tutorial > indigo-desktop-full-wet.rosinstall
   7 $ wstool init -j8 src indigo-desktop-full-wet.rosinstall
   8 $ catkin_make_isolated --install

To use the local ros workspace:

   1 source ~/ros/install_isolated/setup.bash