Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,18 @@ Install colcon

.. tabs::

.. group-tab:: Linux
.. group-tab:: Ubuntu

.. code-block:: console

$ sudo apt install python3-colcon-common-extensions

.. group-tab:: RHEL

.. code-block:: console

$ sudo dnf install python3-colcon-common-extensions

.. group-tab:: macOS

.. code-block:: console
Expand Down
14 changes: 12 additions & 2 deletions source/Tutorials/Intermediate/Rosdep.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,19 @@ If you are using ``rosdep`` with ROS, it is conveniently packaged along with the
This is the recommended way to get ``rosdep``.
You can install it with:

.. code-block:: console
.. tabs::

.. group-tab:: Ubuntu

.. code-block:: console

$ sudo apt install python3-rosdep

.. group-tab:: RHEL

.. code-block:: console

$ apt-get install python3-rosdep
$ sudo dnf install python3-rosdep

.. note::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,18 @@ This tutorial expects you to have ``turtle_tf2_py`` package installed.

.. tabs::

.. group-tab:: Linux
.. group-tab:: Ubuntu

.. code-block:: console

$ sudo apt install ros-{DISTRO}-turtle-tf2-py

.. group-tab:: RHEL

.. code-block:: console

$ sudo dnf install ros-{DISTRO}-turtle-tf2-py

.. group-tab:: From Source

.. code-block:: console
Expand Down
Loading