Skip to content

Commit fdc75fa

Browse files
author
Murilo Marinho
committed
Added detailed explanation
1 parent cc651d9 commit fdc75fa

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

docs/installation.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,28 @@ sudo add-apt-repository ppa:dqrobotics-dev/development
1313
sudo apt-get update
1414
sudo apt-get install libdqrobotics libdqrobotics-interface-json11 libdqrobotics-interface-coppeliasim libdqrobotics-interface-coppeliasim-zmq
1515
```
16+
17+
## Installation details
18+
19+
We begin by setting up sources. This wll tell `apt` where to find the debian packages. They are currently being deployed
20+
in GitHub.
21+
22+
```commandline
23+
curl -s --compressed "https://smartarmstack.github.io/smart_arm_stack_ROS2/KEY.gpg" \
24+
| gpg --dearmor \
25+
| sudo tee /etc/apt/trusted.gpg.d/smartarmstack_lgpl.gpg >/dev/null
26+
sudo curl -s --compressed -o /etc/apt/sources.list.d/smartarmstack_lgpl.list \
27+
"https://smartarmstack.github.io/smart_arm_stack_ROS2/smartarmstack_lgpl.list"
28+
```
29+
30+
We then update `apt` once to get the new information, as shown below.
31+
32+
```commandline
33+
sudo apt update
34+
```
35+
36+
Lastly, we install all available packages.
37+
38+
```commandline
39+
sudo apt-get install ros-jazzy-sas-*
40+
```

0 commit comments

Comments
 (0)