Skip to content

Commit c00ce74

Browse files
committed
[DOCS] indents and blocks
1 parent b1386b6 commit c00ce74

File tree

1 file changed

+5
-0
lines changed
  • robotics-ai-suite/docs/embodied/installation_setup/installation

1 file changed

+5
-0
lines changed

robotics-ai-suite/docs/embodied/installation_setup/installation/realsense.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,31 +17,36 @@ ROS is a set of open-source software libraries and tools that help you build rob
1717

1818
sudo mkdir -p /etc/apt/keyrings
1919
curl -sSf https://librealsense.intel.com/Debian/librealsense.pgp | sudo tee /etc/apt/keyrings/librealsense.pgp > /dev/null
20+
```
2021

2122
2. Ensure that apt HTTPS support is installed:
2223

2324
```bash
2425

2526
sudo apt-get install apt-transport-https
27+
```
2628

2729
3. Add the server to the list of repositories:
2830

2931
```bash
3032

3133
echo "deb [signed-by=/etc/apt/keyrings/librealsense.pgp] https://librealsense.intel.com/Debian/apt-repo `lsb_release -cs` main" | \
3234
sudo tee /etc/apt/sources.list.d/librealsense.list
35+
```
3336

3437
4. Update your apt repository caches after setting up the repositories:
3538

3639
```bash
3740

3841
sudo apt update
42+
```
3943

4044
5. Install the RealSense drivers and libraries:
4145

4246
```bash
4347
sudo apt install librealsense2-dkms
4448
sudo apt install librealsense2=2.55.1-0~realsense.12474
49+
```
4550

4651
> **Attention:**
4752
The command above has fixed the ``librealsense2`` package version; therefore, you need to install dependent packages, for example ``librealsense2-utils``, ``librealsense2-dev``, and ``librealsense2-gl``.

0 commit comments

Comments
 (0)