Ubuntu install of Hydro Care-O-bot
The fuerte installation process described on this page is not fully available and tested yet. We are working on making it available as soon as possible. If you discover problems, please write to fmw@ipa.fhg.de. |
These instructions only cover installing Care-O-bot-related software on a supported Ubuntu-based machine. The installation is tested for Ubuntu 14.04. If you discover problems installing them on other platforms, please tell us.
Contents
Installation Instructions
These instructions cover installing Care-O-bot-related ROS Indigo software on a supported Ubuntu-based machine. For an overview of Care-O-bot software and ROS, please see the Care-O-bot software overview.
1. Configure your Ubuntu repositories
Configure your Ubuntu repositories to allow "restricted," "universe," and "multiverse." You can follow the Ubuntu guide for instructions on doing this.
2. Setup your sources.list
Setup your computer to accept software from packages.ros.org.
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list'
Source Debs are also available |
3. Set up your keys
sudo apt install curl # if you haven't already installed curl curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add -
4. Installation
Install all Care-O-bot stacks
sudo apt-get update sudo apt-get install ros-indigo-care-o-bot
5. Environment setup
It's convenient if the ROS environment variables are automatically added to your bash session every time a new shell is launched:
echo "source /opt/ros/indigo/setup.bash" >> ~/.bashrc source ~/.bashrc
If you have more than one ROS distribution installed, ~/.bashrc must only source the setup.bash for the version you are currently using.
If you just want to change the environment of your current shell, you can type:
source /opt/ros/indigo/setup.bash
If you use zsh instead of bash you need to run the following commands to set up your shell:
echo "source /opt/ros/indigo/setup.zsh" >> ~/.zshrc source ~/.zshrc