You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: integrations/ros.rst
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,30 +14,32 @@ It provides a clean integration that requires no Conan-specific modifications in
14
14
15
15
.. important::
16
16
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**.
18
18
If you have any issues with other ROS versions, please let us know by opening an issue in our GitHub repository.
19
19
20
20
.. note::
21
21
22
22
**Pre-requisites to run the example:**
23
23
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:
25
26
26
27
.. code-block:: docker
27
28
28
-
FROM osrf/ros:humble-desktop
29
+
FROM osrf/ros:kilted-desktop
29
30
RUN apt-get update && apt-get install -y \
30
31
curl \
31
32
python3-pip \
32
33
git \
33
-
ros-humble-nav2-msgs \
34
+
ros-kilted-nav2-msgs \
34
35
&& rm -rf /var/lib/apt/lists/*
35
36
RUN pip3 install --upgrade pip && pip3 install conan==2.*
36
37
RUN conan profile detect
37
38
CMD ["bash"]
38
39
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``.
39
41
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).
41
43
42
44
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>`_.
43
45
Clone it like so to get started:
@@ -153,7 +155,7 @@ we can build the `str_printer` package as usual with Colcon.
0 commit comments