Go to file
Ken Conley e4f5aaa211 test_roslaunch: #1878 disabled empty launch test as this may reach a little too deep for coverage 2009-10-16 22:44:33 +00:00
3rdparty applying r6439 to trunk 2009-10-07 00:35:51 +00:00
LICENSE sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
bin updated code to use roslib.rospack instead of scriptutil 2009-10-13 19:32:34 +00:00
config sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
core rosli: #1874 removing update_path for good 2009-10-16 21:32:08 +00:00
dist sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
doc/rosmanual sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
log sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
std_msgs std_msgs/Bool 2009-09-30 22:32:32 +00:00
std_srvs updated genmsg/gensrv rules 2009-09-16 17:55:47 +00:00
test test_roslaunch: #1878 disabled empty launch test as this may reach a little too deep for coverage 2009-10-16 22:44:33 +00:00
tools roslib: #1873 removing uuid Python 2.4 compat 2009-10-16 21:18:33 +00:00
.gitignore sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
AUTHORS sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
Makefile swapped order on building rospack and rosbuild 2009-09-22 14:30:25 +00:00
README testing commit mail 2009-09-17 02:16:15 +00:00
rosdep.yaml Merged r6521 from rc (should have checked it in on trunk in the first place) 2009-10-14 20:01:28 +00:00
rosdistro.yaml leaving in opencv stack for now until we migrate all of ros-pkg 2009-10-15 20:15:32 +00:00
rosorg-svn sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
stack.xml sound drivers 0.2.0 2009-09-11 03:08:16 +00:00

README

Robot Operating System (ROS)
===============================================================================

ROS is a meta-operating system for your robot.  It provides
language-independent and network-transparent communication for a
distributed robot control system.

Installation Notes
------------------

- For full installation instructions, including system prerequisites and
  platform-specific help, see:

    http://pr.willowgarage.com/wiki/ROS/Installation

- Before running make, some environment variables need to be declared.
  Go to the base directory of ros and set the following environment variables:

  for bash:
    export ROS_ROOT=~/blah/ros
    export ROS_PACKAGE_PATH=~/blah/pr # checkout of personalrobots.svn.sf.net
    export PATH=$ROS_ROOT/bin:$PATH
    export ROS_MASTER_URI=http://localhost:11311
    export PYTHONPATH=$PYTHONPATH:$ROS_ROOT/core/roslib/src
    export OCTAVE_PATH=$OCTAVE_PATH:$ROS_ROOT/core/experimental/rosoct/octave
    source $ROS_ROOT/tools/rosbash/rosbash
  for tcsh:
    setenv ROS_ROOT `pwd`
    setenv ROS_PACKAGE_PATH ~/blah/pr # checkout of personalrobots.svn.sf.net
    setenv PATH ${ROS_ROOT}/bin:$PATH
    setenv ROS_MASTER_URI http://localhost:11311
    setenv PYTHONPATH ${PYTHONPATH}:${ROS_ROOT}/core/roslib/src
    setenv OCTAVE_PATH ${OCTAVE_PATH}:${ROS_ROOT}/core/experimental/rosoct/octave
    source $ROS_ROOT/tools/rosbash/rostcsh

  Append this to the end of ~/.octaverc file
    addpath(fullfile(getenv('ROS_ROOT'),'core','experimental','rosoct','octave'))
- run
    'make'

- run
    'rosmake roscpp'
    and
    'rosmake rospy'
    and
    'rosmake std_msgs'