-
Notifications
You must be signed in to change notification settings - Fork 17
Installing the Research SDK
rethink-cgindel edited this page Nov 13, 2013
·
32 revisions
- A developer workstation meeting the minimum system requirements is available for use.
- The developer workstation has been set up successfully with Ubuntu and ROS - instructions here.
- You have configured your Development Workstation to access Github. Instructions here.
- You have installed the Rethink RSDK on the Development Workstation.
$ sudo apt-get install python-wstool python-rosdep
$ mkdir -p ~/ros_ws/src
$ cd ~/ros_ws/src
$ wstool init .
$ wstool merge https://raw.github.com/RethinkRobotics/baxter/release-0.7.0/baxter_sdk.rosinstall
$ wstool update
$ cd ..
$ rosdep install --from-paths src --ignore-src --rosdistro groovy -y
$ catkin_make
This pulls down the development branches from all of our repositories into your source directory.
$ source /opt/ros/groovy/setup.bash
$ catkin_make
$ catkin_make install
$ cp src/baxter/baxter.sh .
$ ./baxter.sh
#Things to check or verify
-
Make sure you have the proper tag which is currently v0.7.0
$ git tag -l $ git checkout v0.7.0
-
**Note: if the development workstation hostname is not resolvable to an IP address from the robot, then you will have to ensure the ROS_IP environment variable is set. Use the 'env' command to see what environment variables were set as a result of the running the baxter.sh script above and ensure that ROS_IP and/or ROS_HOSTNAME are set properly.
$ env
Use 'ifconfig' to get your development workstation's IP address.**
© 2008-2013 Rethink Robotics. All rights reserved.