Skip to content

Commit c377899

Browse files
Add instructions for adding Clearpath package sources when setting up offboard computers (Humble & Jazzy) (#389)
1 parent eb28105 commit c377899

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

docs_versioned_docs/version-ros2humble/ros/installation/offboard_pc.mdx

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,30 @@ with an IP address that won't interfere with other devices on the network, such
2727
Follow the [official instructions](https://docs.ros.org/en/humble/Installation/Ubuntu-Install-Debians.html) for
2828
installing ROS 2 Humble from debian packages.
2929

30+
### Clearpath Packages
31+
32+
Clearpath hosts open-source and closed-source ROS packages compiled as debian packages on our own servers. To add
33+
these packages to your system you must add Clearpath's servers to your `apt` sources by opening a terminal and
34+
running the following commands:
35+
```bash
36+
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add -
37+
sudo sh -c 'echo \
38+
"deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > \
39+
/etc/apt/sources.list.d/clearpath-latest.list'
40+
sudo apt-get update
41+
```
42+
43+
To update `rosdep` dependencies with the package built & hosted on Clearpath's servers, run
44+
```bash
45+
sudo wget \
46+
https://raw.githubusercontent.com/clearpathrobotics/public-rosdistro/master/rosdep/50-clearpath.list \
47+
-O /etc/ros/rosdep/sources.list.d/50-clearpath.list
48+
rosdep update
49+
```
50+
3051
### Clearpath Desktop metapackage
3152

32-
Once the ROS 2 Humble has been installed, the [Clearpath Desktop](https://github.com/clearpathrobotics/clearpath_desktop)
53+
Once ROS 2 Humble has been installed, the [Clearpath Desktop](https://github.com/clearpathrobotics/clearpath_desktop)
3354
metapackage can be installed.
3455

3556
```

docs_versioned_docs/version-ros2jazzy/ros/installation/offboard_pc.mdx

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,30 @@ with an IP address that won't interfere with other devices on the network, such
2727
Follow the [official instructions](https://docs.ros.org/en/jazzy/Installation/Ubuntu-Install-Debs.html) for
2828
installing ROS 2 Jazzy from debian packages.
2929

30+
## Clearpath Packages
31+
32+
Clearpath hosts open-source and closed-source ROS packages compiled as debian packages on our own servers. To add
33+
these packages to your system you must add Clearpath's servers to your `apt` sources by opening a terminal and
34+
running the following commands:
35+
```bash
36+
wget https://packages.clearpathrobotics.com/public.key -O - | sudo apt-key add -
37+
sudo sh -c 'echo \
38+
"deb https://packages.clearpathrobotics.com/stable/ubuntu $(lsb_release -cs) main" > \
39+
/etc/apt/sources.list.d/clearpath-latest.list'
40+
sudo apt-get update
41+
```
42+
43+
To update `rosdep` dependencies with the package built & hosted on Clearpath's servers, run
44+
```bash
45+
sudo wget \
46+
https://raw.githubusercontent.com/clearpathrobotics/public-rosdistro/master/rosdep/50-clearpath.list \
47+
-O /etc/ros/rosdep/sources.list.d/50-clearpath.list
48+
rosdep update
49+
```
50+
3051
## Clearpath Desktop metapackage
3152

32-
Once the ROS 2 Jazzy has been installed, the [Clearpath Desktop](https://github.com/clearpathrobotics/clearpath_desktop)
53+
Once ROS 2 Jazzy has been installed, the [Clearpath Desktop](https://github.com/clearpathrobotics/clearpath_desktop)
3354
metapackage can be installed.
3455

3556
```

0 commit comments

Comments
 (0)