## For instruction on writing tutorials ## http://www.ros.org/wiki/WritingTutorials #################################### ##FILL ME IN #################################### ## for a custom note with links: ## note = ## for the canned note of "This tutorial assumes that you have completed the previous tutorials:" just add the links ## note.0= ## descriptive title for the tutorial ## title = Installing ROS Melodic on the Raspberry Pi ## multi-line description to be displayed in search ## description = This instruction covers the installation of ROS Melodic on the [[http://www.raspberrypi.org/|Raspberry Pi]] with Raspbian Buster. However as final repositories are available now, today it is faster and easier to use Ubuntu Mate 18.04 (Bionic, [[https://www.raspberrypi.org/downloads/|here]]) together with the standard ARM installation instructions [[melodic/Installation/Ubuntu|here]]. ## the next tutorial description (optional) ## next = ## links to next tutorial (optional) ## next.0.link= ## next.1.link= ## what level user is this tutorial for ## level= BeginnerCategory ## keywords = [[http://www.raspberrypi.org/|RaspberryPi]], Setup, Melodic, Buster #################################### <> <> == Introduction == This tutorial explains how to install ROS Melodic from source on the Raspberry Pi. The instructions is based on the [[ROSberryPi/Installing%20ROS%20Kinetic%20on%20the%20Raspberry%20Pi| ROSberryPi Kinetic installation]]. {{{#!wiki blue/solid /!\ '''Note:''' If you're using the Raspberry Pi 2 or 3 it is faster and easier to use the standard ARM installation instructions [[melodic/Installation/Ubuntu|here]]. }}} == Prerequisites == These instructions assume that Raspbian Buster is being used as the OS on the Raspberry Pi. The download page for current images of Raspbian is https://www.raspberrypi.org/downloads/. === Setup ROS Repositories === First install repository key: {{{ $ sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' $ sudo apt-key adv --keyserver hkp://ha.pool.sks-keyservers.net:80 --recv-key C1CF6E31E6BADE8868B172B4F42ED6FBAB17C654 }}} Now, make sure your Debian package index is up-to-date: {{{ $ sudo apt-get update $ sudo apt-get upgrade }}} === Install Bootstrap Dependencies === {{{ $ sudo apt install -y python-rosdep python-rosinstall-generator python-wstool python-rosinstall build-essential cmake }}} === Initializing rosdep === {{{ $ sudo rosdep init $ rosdep update }}} == Installation == Now, we will download and build ROS Melodic. === Create a catkin Workspace === In order to build the core packages, you will need a catkin workspace. Create one now: {{{ $ mkdir -p ~/ros_catkin_ws $ cd ~/ros_catkin_ws }}} Next we will want to fetch the core packages so we can build them. We will use wstool for this. Select the wstool command for the particular variant you want to install: '''ROS-Comm: (recommended)''' ROS package, build, and communication libraries. No GUI tools. . {{{ $ rosinstall_generator ros_comm --rosdistro melodic --deps --wet-only --tar > melodic-ros_comm-wet.rosinstall $ wstool init src melodic-ros_comm-wet.rosinstall }}} '''Desktop: ''' ROS, [[rqt]], [[rviz]], and robot-generic libraries . {{{ $ rosinstall_generator desktop --rosdistro melodic --deps --wet-only --tar > melodic-desktop-wet.rosinstall $ wstool init src melodic-desktop-wet.rosinstall }}} This will add all of the `catkin` or `wet` packages in the given variant and then fetch the sources into the `~/ros_catkin_ws/src` directory. The command will take a few minutes to download all of the core ROS packages into the `src` folder. The `-j8` option downloads 8 packages in parallel. {{{{#!wiki blue/solid So far, only the ROS-Comm variant has been tested on the Raspberry Pi in Melodic; however, more are defined in [[http://ros.org/reps/rep-0131.html#variants|REP 131]] such as `robot`, `perception`, etc. Just change the package path to the one you want, e.g., for `robot` do: {{{ $ rosinstall_generator robot --rosdistro melodic --deps --wet-only --tar > melodic-robot-wet.rosinstall $ wstool init src melodic-robot-wet.rosinstall }}} Please feel free to update these instructions as you test more variants. }}}} {{{{#!wiki red/solid If `wstool init` fails or is interrupted, you can resume the download by running: {{{ wstool update -j4 -t src }}} }}}} === Resolve Dependencies === Before you can build your catkin workspace, you need to make sure that you have all the required dependencies. We use the rosdep tool for this. ==== Resolving Dependencies with rosdep ==== The dependencies should be resolved by running rosdep: {{{ $ cd ~/ros_catkin_ws $ rosdep install -y --from-paths src --ignore-src --rosdistro melodic -r --os=debian:buster }}} This will look at all of the packages in the src directory and find all of the dependencies they have. Then it will recursively install the dependencies. The --from-paths option indicates we want to install the dependencies for an entire directory of packages, in this case src. The --ignore-src option indicates to rosdep that it shouldn't try to install any ROS packages in the src folder from the package manager, we don't need it to since we are building them ourselves. The --rosdistro option is required because we don't have a ROS environment setup yet, so we have to indicate to rosdep what version of ROS we are building for. Finally, the -y option indicates to rosdep that we don't want to be bothered by too many prompts from the package manager. After a while rosdep will finish installing system dependencies and you can continue. === Building the catkin Workspace === Once you have completed downloading the packages and have resolved the dependencies, you are ready to build the catkin packages. Invoke catkin_make_isolated: {{{ $ sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/melodic }}} {{{#!wiki blue/solid '''Note:''' This will install ROS in the equivalent file location to Ubuntu in `/opt/ros/melodic` however you can modify this as you wish. }}} With older raspberries it is recommended to increase the [[http://raspberrypimaker.com/adding-swap-to-the-raspberrypi/|add swap space]]. Also recommended to decrease the compilation thread count with the -j1 or -j2 option instead of the default -j4 option: {{{ $ sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/melodic -j2 }}} Now ROS should be installed! Remember to source the new installation: {{{ $ source /opt/ros/melodic/setup.bash }}} Or optionally source the `setup.bash` in the `~/.bashrc`, so that ROS environment variables are automatically added to your bash session every time a new shell is launched: {{{ $ echo "source /opt/ros/melodic/setup.bash" >> ~/.bashrc }}} == Maintaining a Source Checkout == === Updating the Workspace === See the [[melodic/Installation/Source|Ubuntu source install instructions]] for steps on updating the `ros_catkin_ws` workspace. The same steps should apply to the Raspberry Pi. === Adding Released Packages === You may add additional packages to the installed ros workspace that have been released into the ros ecosystem. First, a new rosinstall file must be created including the new packages (Note, this can also be done at the initial install). For example, if we have installed `ros_comm`, but want to add `ros_control` and `joystick_drivers`, the command would be: {{{ $ cd ~/ros_catkin_ws $ rosinstall_generator ros_comm ros_control joystick_drivers --rosdistro melodic --deps --wet-only --tar > melodic-custom_ros.rosinstall }}} You may keep listing as many ROS packages as you'd like separated by spaces. Next, update the workspace with wstool: {{{ $ wstool merge -t src melodic-custom_ros.rosinstall $ wstool update -t src }}} After updating the workspace, you may want to run rosdep to install any new dependencies that are required: {{{ $ rosdep install --from-paths src --ignore-src --rosdistro melodic -y -r --os=debian:buster }}} Finally, now that the workspace is up to date and dependencies are satisfied, rebuild the workspace: {{{ $ sudo ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release --install-space /opt/ros/melodic }}} == References == * http://wiki.ros.org/ROSberryPi/Installing%20ROS%20Kinetic%20on%20the%20Raspberry%20Pi ## AUTOGENERATED DO NOT DELETE ## TutorialCategory ## FILL IN THE STACK TUTORIAL CATEGORY HERE