-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New tutorial for creating a workspace #359
Changes from 10 commits
30156a9
1b8ae19
7971e0f
7909d29
5d2c86b
1b8f93e
d2f7cd9
a2123cb
2ad8076
c15179d
82f9782
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.. _Colcon: | ||
|
||
.. redirect-from:: | ||
|
||
Colcon-Tutorial | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,359 @@ | ||
.. _ROS2Workspace: | ||
|
||
Creating a workspace | ||
==================== | ||
|
||
**Goal:** Create a workspace and learn how to set up an overlay for development and testing. | ||
|
||
**Tutorial level:** Beginner | ||
|
||
**Time:** 20 minutes | ||
|
||
.. contents:: Contents | ||
:depth: 2 | ||
:local: | ||
|
||
Background | ||
---------- | ||
|
||
A workspace is a directory containing ROS 2 packages. | ||
Before using ROS 2, it’s necessary to source your the ROS 2 installation workspace in the terminal you plan to work in. | ||
This makes ROS 2’s packages available for you to use in that terminal. | ||
|
||
You also have the option of sourcing an “overlay” – a secondary workspace where you can add new packages without interfering with the existing ROS 2 workspace that you're extending, or “underlay”. | ||
Your underlay must contain the dependencies of all the packages in your overlay. | ||
Packages in your overlay will override packages in the underlay. | ||
It's also possible to have several layers of underlays and overlays, with each successive overlay using the packages of its parent underlays. | ||
|
||
|
||
Prerequisites | ||
------------- | ||
|
||
* :ref:`ROS 2 installation <InstallationGuide>` | ||
* :ref:`colcon installation <Colcon>` | ||
* `git installation <https://git-scm.com/book/en/v2/Getting-Started-Installing-Git>`__ | ||
* :ref:`turtlesim installation <Turtlesim>` | ||
* Understanding of basic terminal commands (`here’s a guide for linux <http://www.ee.surrey.ac.uk/Teaching/Unix/>`__) | ||
* Text editor of your choice | ||
|
||
Tasks | ||
----- | ||
|
||
1 Source ROS 2 environment | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Your main ROS 2 installation will be your underlay for this tutorial. | ||
(Keep in mind that an underlay does not necessarily have to be the main ROS 2 installation.) | ||
|
||
Depending on how you installed ROS 2 (from source or binaries), and which platform you’re on, your exact source command will vary: | ||
|
||
.. tabs:: | ||
|
||
.. group-tab:: Linux | ||
|
||
.. code-block:: bash | ||
|
||
source /opt/ros/<distro>/setup.bash | ||
|
||
For example, if you installed ROS 2 Dashing: | ||
|
||
.. code-block:: bash | ||
|
||
source /opt/ros/dashing/setup.bash | ||
|
||
.. group-tab:: macOS | ||
|
||
.. code-block:: bash | ||
|
||
. ~/ros2_install/ros2-osx/setup.bash | ||
|
||
.. group-tab:: Windows | ||
|
||
.. code-block:: bash | ||
|
||
call C:\dev\ros2\local_setup.bat | ||
|
||
Consult the :ref:`installation guide <InstallationGuide>` you followed if these commands don’t work for you. | ||
|
||
|
||
2 Create a new directory | ||
^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Best practice is to create a new directory for every new workspace. | ||
The name doesn’t matter, but it is helpful to have it indicate the purpose of the workspace. | ||
Let’s choose the directory name ``dev_ws``, for “development workspace”: | ||
|
||
.. code-block:: bash | ||
|
||
mkdir dev_ws | ||
mkdir dev_ws/src | ||
cd dev_ws/src | ||
|
||
Another best practice is to put any packages in your workspace into the ``src`` directory. | ||
The above code creates a ``src`` directory inside ``dev_ws`` and then navigates into it. | ||
|
||
|
||
3 Clone a sample repo | ||
^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Ensure you’re still in the ``dev_ws/src`` directory before you clone. | ||
|
||
In the rest of the beginner developer tutorials, you will create your own packages, but for now you will practice putting a workspace together using existing packages. | ||
|
||
The existing packages you will use are from the ``ros_tutorials`` repository (repo). | ||
If you went through the beginner user tutorials, you'll be familiar with ``turtlesim``, one of the packages in this repo. | ||
|
||
You can see the repo `on github <https://github.com/ros/ros_tutorials/>`__. | ||
|
||
Notice the “Branch” drop down list to the left above the directories list. | ||
When you clone this repo, add the ``-b`` argument followed by the branch that corresponds with your ROS 2 distro. | ||
|
||
In the ``dev_ws/src`` directory, if your distro is Dashing for example, run the command: | ||
|
||
.. code-block:: bash | ||
|
||
git clone https://github.com/ros/ros_tutorials.git -b dashing-devel | ||
|
||
Now ``ros_tutorials`` is cloned in your workspace. | ||
If you view the contents of ``dev_ws/src`` now, you will see the new ``ros_tutorials`` directory. | ||
|
||
To see the packages inside ``ros_tutorials``, enter the command: | ||
|
||
.. tabs:: | ||
|
||
.. group-tab:: Linux | ||
|
||
.. code-block:: bash | ||
|
||
ls ros_tutorials | ||
|
||
.. group-tab:: macOS | ||
|
||
.. code-block:: bash | ||
|
||
ls ros_tutorials | ||
|
||
.. group-tab:: Windows | ||
|
||
.. code-block:: bash | ||
|
||
dir ros_tutorials | ||
|
||
|
||
Which will list the contents of the repo you just cloned, like so: | ||
|
||
.. code-block:: | ||
|
||
roscpp_tutorials rospy_tutorials ros_tutorials turtlesim | ||
maryaB-osr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
The first three packages are being ignored; ``turtlesim`` is the only actual ROS 2 package in this repo. | ||
|
||
Now you have populated your workspace with a sample package, but it isn’t a fully-functional workspace yet. | ||
You need to resolve dependencies and build the workspace first. | ||
|
||
|
||
4 Resolve dependencies | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Before building the workspace, you need to resolve package dependencies. | ||
You may have all the dependencies already, but best practice is to check for dependencies every time you clone. | ||
You wouldn’t want a build to fail after a long wait because of missing dependencies. | ||
|
||
From the root of your workspace (``~/dev_ws``): | ||
Run the following command, replacing ``<distro>`` with your distro: | ||
|
||
.. code-block:: bash | ||
|
||
sudo rosdep install -i --from-path src --rosdistro <distro> -y | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we have a tutorial that talks about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm.. there is a bit more about dependencies once they start creating their own packages, but not much more about There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm fine with punting on rosdep for now. I've opened #381 to track adding a tutorial about rosdep. |
||
|
||
For example, if you're using Dashing, you would run: | ||
|
||
.. code-block:: bash | ||
|
||
sudo rosdep install -i --from-path src --rosdistro dashing -y | ||
|
||
If you already have all your dependencies, the console will return: | ||
|
||
.. code-block:: bash | ||
|
||
#All required rosdeps installed successfully | ||
|
||
Packages declare their dependencies in the package.xml file (you will learn more about packages in the next tutorial). | ||
This command walks through those declarations and installs the ones that are missing. | ||
You can learn more about ``rosdep`` in another tutorial (coming soon). | ||
|
||
5 Build the workspace with colcon | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
From the root of your workspace (``~/dev_ws``), you can now build your packages using the command: | ||
|
||
.. tabs:: | ||
|
||
.. group-tab:: Linux | ||
|
||
.. code-block:: bash | ||
|
||
colcon build | ||
|
||
.. group-tab:: macOS | ||
|
||
.. code-block:: bash | ||
|
||
colcon build | ||
|
||
.. group-tab:: Windows | ||
|
||
.. code-block:: bash | ||
|
||
colcon build --merge-install | ||
|
||
Windows doesn’t allow long paths, so ``merge-install`` will combine all the paths into the ``install`` directory. | ||
|
||
The console will return the following message: | ||
|
||
.. code-block:: bash | ||
|
||
Starting >>> turtlesim | ||
Finished <<< turtlesim [5.49s] | ||
|
||
Summary: 1 package finished [5.58s] | ||
|
||
.. note:: | ||
Other useful arguments for ``colcon build``: | ||
|
||
* ``--packages-up-to`` builds the package you want, plus all its dependencies, but not the whole workspace (saves time) | ||
* ``--symlink-install`` saves you from having to rebuild every time you tweak python scripts | ||
* ``--event-handlers console-direct+`` shows console output while building (can otherwise be found in the ``log`` directory) | ||
|
||
Once the build is finished, enter ``ls`` in the workspace root (``~/dev_ws``) and you will see that colcon has created new directories: | ||
|
||
.. code-block:: bash | ||
|
||
build install log src | ||
|
||
The ``install`` directory is where your workspace’s setup files are, which you can use to source your overlay. | ||
|
||
|
||
6 Source the overlay | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Before sourcing the overlay, it is very important that you open a new terminal, separate from the one where you built the workspace. | ||
Sourcing an overlay in the same terminal where you built, or likewise building where an overlay is sourced, may create complex issues. | ||
|
||
In the new terminal, source your main ROS 2 environment as the “underlay”, so you can build the overlay “on top of” it: | ||
|
||
.. tabs:: | ||
|
||
.. group-tab:: Linux | ||
|
||
.. code-block:: bash | ||
|
||
source /opt/ros/<distro>/setup.bash | ||
maryaB-osr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
.. group-tab:: macOS | ||
|
||
.. code-block:: bash | ||
|
||
. ~/ros2_install/ros2-osx/setup.bash | ||
|
||
.. group-tab:: Windows | ||
|
||
.. code-block:: bash | ||
|
||
call C:\dev\ros2\setup.bat | ||
|
||
Go into the root of your workspace: | ||
|
||
.. code-block:: bash | ||
|
||
cd dev_ws | ||
|
||
In the root, source your overlay: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If the user has already sourced the underlay they only need to source the Or they just source the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually, an explanation of the difference between There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Adding this note:
Does that make sense? |
||
|
||
.. tabs:: | ||
|
||
.. group-tab:: Linux | ||
|
||
.. code-block:: bash | ||
|
||
. install/local_setup.bash | ||
|
||
.. group-tab:: macOS | ||
|
||
.. code-block:: bash | ||
|
||
. install/local_setup.bash | ||
|
||
.. group-tab:: Windows | ||
|
||
.. code-block:: bash | ||
|
||
. install/local_setup.bat | ||
|
||
.. note:: | ||
|
||
Sourcing the ``local_setup`` of the overlay will only add the packages available in the overlay to your environment. | ||
``setup`` sources the overlay as well as the underlay it was created in, allowing you to utilize both workspaces. | ||
|
||
So, sourcing your main ROS 2 installation's ``setup`` and then the ``dev_ws`` overlay's ``local_setup``, like you just did, | ||
is the same as just sourcing ``dev_ws``'s ``setup``, because that includes the environment of the underlay it was created in. | ||
|
||
Now you can run the ``turtlesim`` package from the overlay: | ||
|
||
.. code-block:: bash | ||
|
||
ros2 run turtlesim turtlesim_node | ||
|
||
But how can you tell that this is the overlay turtlesim running, and not your main installation's turtlesim? | ||
|
||
Let’s modify turtlesim in the overlay so you can see the effects: | ||
|
||
* You can modify and rebuild packages in the overlay separately from the underlay. | ||
* The overlay takes precedence over the underlay. | ||
maryaB-osr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
|
||
7 Modify the overlay | ||
^^^^^^^^^^^^^^^^^^^^ | ||
|
||
You can modify ``turtlesim`` in your overlay by editing the title bar on the turtlesim window. | ||
To do this, locate the ``turtle_frame.cpp`` file in ``~/dev_ws/src/ros_tutorials/turtlesim/src``. | ||
Open ``turtle_frame.cpp`` with your preferred text editor. | ||
|
||
On line 52 you will see the function ``setWindowTitle("TurtleSim");``. | ||
Change the value ``”TurtleSim”`` to ``”MyTurtleSim”``, and save the file. | ||
|
||
Return to first terminal where you ran ``colcon build`` earlier and run it again. | ||
|
||
Return to the second terminal (where the overlay is sourced) and run turtlesim again: | ||
|
||
.. code-block:: bash | ||
|
||
ros2 run turtlesim turtlesim_node | ||
|
||
You will see the title bar on the turtlesim window now says “MyTurtleSim”. | ||
|
||
.. image:: overlay.png | ||
|
||
Even though your main ROS 2 environment was sourced in this terminal earlier, the overlay of your ``dev_ws`` environment takes precedence over the contents of the underlay. | ||
|
||
To see that your underlay is still intact, open a brand new terminal and source only your ROS 2 installation. | ||
Run turtlesim again: | ||
|
||
.. code-block:: | ||
|
||
ros2 run turtlesim turtlesim_node | ||
|
||
.. image:: underlay.png | ||
|
||
You can see that modifications in the overlay did not actually affect anything in the underlay. | ||
|
||
|
||
Summary | ||
------- | ||
In this tutorial, you sourced your main ROS 2 distro install as your underlay, and created an overlay by cloning and building packages in a new workspace. | ||
The overlay gets prepended to the path, and takes precedence over the underlay, as you saw with your modified turtlesim. | ||
|
||
Using overlays is recommended for working on a small number of packages, so you don’t have to put everything in the same workspace and rebuild a huge workspace on every iteration. | ||
|
||
|
||
.. todo: "Next steps section" link to "Creating a ROS 2 package" once all tutorials are done (no empty references) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We wanted to make sure to embed the distro name into the directory for macOS / Windows too, right?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this do it #380 ?