Go to file
Brian Gerkey 1da67ca19c testing 2010-02-10 22:00:51 +00:00
3rdparty updating gtest to version 1.4 #2412 2010-02-10 19:03:51 +00:00
LICENSE sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
bin ROS 1.0.0 2010-01-22 19:39:21 +00:00
config sound drivers 0.2.0 2009-09-11 03:08:16 +00:00
core Add ${node} token 2010-02-10 19:44:44 +00:00
dist 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: doc reviewed 2010-01-11 08:30:47 +00:00
std_srvs std_srvs: marking as doc reviewed 2010-01-11 08:14:37 +00:00
test missed a spot 2010-02-09 06:35:16 +00:00
tools rosmsg/rossrv: #2407 bug fix for resolving slot types 2010-02-09 21:52:57 +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
CMakeLists.txt ROS 1.0.0 2010-01-22 19:39:21 +00:00
Makefile restoring core_tools target that rosinstall calls? 2010-01-14 00:43:33 +00:00
README testing 2010-02-10 22:00:51 +00:00
rosdep.yaml removing qt4-opengl definitions from qt4 rosdep. they are defined in openrave_planning/rosdep.yaml for that is the only place they are used 2010-02-10 20:35:10 +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'