Skip to content

Commit 0c59616

Browse files
authored
Merge pull request #4292 from conan-io/release/2.21
Sync develop2 with release branch
2 parents c837e1e + 77d2df0 commit 0c59616

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

integrations/ros.rst

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,30 +14,32 @@ It provides a clean integration that requires no Conan-specific modifications in
1414

1515
.. important::
1616

17-
This integration supports **ROS2**, it has been developed using its **Humble version** and the aim is to **support newer versions going forward**.
17+
This integration supports **ROS2**, it has been developed using the **Kilted version** and the aim is to **support newer versions going forward**.
1818
If you have any issues with other ROS versions, please let us know by opening an issue in our GitHub repository.
1919

2020
.. note::
2121

2222
**Pre-requisites to run the example:**
2323

24-
1. In order to run the example, it is expected that you have an Ubuntu environment (22.04 LTS preferred) with `ROS2 Humble version installed <https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debs.html>`_. For convenience, you can also use this Docker File instead:
24+
1. In order to run the example, it is expected that you have an Ubuntu environment with `ROS2 installed <https://docs.ros.org/en/kilted/Installation/Ubuntu-Install-Debs.html>`_.
25+
For convenience, you can also use this Dockerfile instead:
2526

2627
.. code-block:: docker
2728
28-
FROM osrf/ros:humble-desktop
29+
FROM osrf/ros:kilted-desktop
2930
RUN apt-get update && apt-get install -y \
3031
curl \
3132
python3-pip \
3233
git \
33-
ros-humble-nav2-msgs \
34+
ros-kilted-nav2-msgs \
3435
&& rm -rf /var/lib/apt/lists/*
3536
RUN pip3 install --upgrade pip && pip3 install conan==2.*
3637
RUN conan profile detect
3738
CMD ["bash"]
3839
40+
Simply copy the Dockerfile, build your image with ``docker build -t conanio/ros-kilted .``, and finally run it with ``docker run -it conanio/ros-kilted``.
3941

40-
Simply copy the Dockerfile, build your image with ``docker build -t conanio/ros-humble .``, and finally run it with ``docker run -it conanio/ros-humble``.
42+
There is also the possibility to run ROS2 on Windows. Follow the [installation instructions in the ROS 2 documentation](https://docs.ros.org/en/kilted/Installation/Windows-Install-Binary.html).
4143

4244
2. The files for this example can be found at `our examples repository <https://github.com/conan-io/examples2/tree/main/examples/tools/ros/rosenv/workspace>`_.
4345
Clone it like so to get started:
@@ -153,7 +155,7 @@ we can build the `str_printer` package as usual with Colcon.
153155
154156
.. code-block:: bash
155157
156-
$ source /opt/ros/humble/setup.bash
158+
$ source /opt/ros/kilted/setup.bash
157159
$ source install/conan/conanrosenv.sh
158160
$ colcon build --packages-select str_printer
159161
Starting >>> str_printer

0 commit comments

Comments
 (0)