software:ros:installation
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
software:ros:installation [2013/04/16 13:57] – [Install ROS core system] tenorth | software:ros:installation [2016/05/19 09:19] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 6: | Line 6: | ||
It is strongly recommended to use Ubuntu Linux as operating system. While other OSs may work, they will more manual adaptations may be needed that require good knowledge of Linux and build systems. | It is strongly recommended to use Ubuntu Linux as operating system. While other OSs may work, they will more manual adaptations may be needed that require good knowledge of Linux and build systems. | ||
- | Follow the [[http:// | + | Follow the [[http:// |
After the installation, | After the installation, | ||
Line 22: | Line 22: | ||
- | ===== Install standard ROS stacks ===== | ||
- | sudo apt-get install ros-fuerte-knowrob | + | ===== Install IAI software components ===== |
+ | It is recommended to install the ROS stacks for which .deb packages exist first, also because this is the easiest way to get all system dependencies installed: | ||
- | ===== Install IAI software components | + | sudo aptitude install ros-fuerte-knowrob ros-fuerte-ias-common |
+ | |||
+ | Copy the following [[http:// | ||
+ | < | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | - git: {local-name: | ||
+ | </ | ||
+ | |||
+ | You can then install the respective ROS stacks into your workspace using | ||
+ | rosws merge yourname.rosinstall | ||
+ | rosws update | ||
+ | |||
+ | Note: As an alternative to creating and merging a rosinstall file into your workspace you can also manually add each one at a time using the command 'rosws set ...'. Usage of this command is shown in the next section. | ||
+ | |||
+ | To compile the software, please refer to the next section for information about how to install the required ROS and system dependencies. | ||
+ | |||
+ | ===== General workflow for compiling ROS stacks | ||
+ | |||
+ | ROS provides a clear way of specifying and resolving dependencies. If you download a new ROS stack " | ||
+ | |||
+ | Add the stack to your ROS workspace (choose the respective version control system): | ||
+ | |||
+ | EITHER: | ||
+ | rosws set stacks/ | ||
+ | OR: | ||
+ | rosws set stacks/ | ||
+ | |||
+ | Check out the sources | ||
+ | |||
+ | rosws update | ||
+ | |||
+ | Resolve system dependencies | ||
+ | |||
+ | rosdep update | ||
+ | rosdep install your_stack | ||
+ | |||
+ | |||
+ | Check if all ROS package dependencies are available (should list all dependencies and not return any errors) | ||
+ | |||
+ | rospack depends your_stack | ||
+ | |||
+ | Locate and install missing ROS dependencies: | ||
+ | |||
+ | # Find out which stack the package is in, either using the ROS wiki or with | ||
+ | roslocate describe < | ||
+ | |||
+ | # Let us assume the package pkg_name is in stack stack_name. | ||
+ | |||
+ | # Check if there is a .deb package for the stack. They are called | ||
+ | # ros-< | ||
+ | # are replaced by hyphens (e.g. stack_name becomes ros-fuerte-stack-name). | ||
+ | # You can search for this package using | ||
+ | |||
+ | apt-cache search ros-fuerte-stack-name | ||
+ | |||
+ | # and install with | ||
+ | |||
+ | sudo apt-get install ros-fuerte-stack-name | ||
+ | |||
+ | # If there is no .deb package, install the stack from source using | ||
+ | |||
+ | roslocate info stack_name | rosws merge - | ||
+ | |||
+ | # Remember to also check for system dependencies of the newly-added stack stack_name | ||
+ | |||
+ | Now everything should be resolved and you are ready to compile. The //rosmake// command automatically compiles all dependencies and the package or stack given as argument. If later on you already have compiled all dependencies and just updated the package itself, it's also safe to just call //make// in that package, which does not re-build the dependencies (and is therefore faster). | ||
- | - KnowRob-Dependencies installiert man am leichtesten über | + | rosmake your_stack |
- | sudo apt-get install ros-fuerte-knowrob |
software/ros/installation.1366120666.txt.gz · Last modified: 2016/05/19 09:18 (external edit)