Skip to content

Commit e134658

Browse files
author
Murilo Marinho
committed
Adjusting installation instructions
1 parent 5d29eb0 commit e134658

File tree

2 files changed

+26
-34
lines changed

2 files changed

+26
-34
lines changed

docs/README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,33 @@ If being read on GitHub, please note that this page is better seen at https://sm
66

77
## Quickstart
88

9+
###
910

11+
### Installation
12+
13+
```{important}
14+
See pre-requisites at [](installation.md).
15+
```
16+
17+
The command below will add and install the `sas` packages via `apt-get`.
18+
19+
```bash
20+
curl -s --compressed "https://smartarmstack.github.io/smart_arm_stack_ROS2/KEY.gpg" \
21+
| gpg --dearmor \
22+
| sudo tee /etc/apt/trusted.gpg.d/smartarmstack_lgpl.gpg >/dev/null
23+
sudo curl -s --compressed -o /etc/apt/sources.list.d/smartarmstack_lgpl.list \
24+
"https://smartarmstack.github.io/smart_arm_stack_ROS2/smartarmstack_lgpl.list"
25+
sudo apt update
26+
sudo apt-get install ros-jazzy-sas-*
27+
```
28+
29+
### Update
30+
31+
After installing, you'll be able to update normally with `apt-get`.
32+
33+
```commandline
34+
sudo apt-get update
35+
```
1036

1137
## Overview
1238

docs/installation.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -8,42 +8,8 @@ You can refer to the official documentation at https://docs.ros.org/en/jazzy/Ins
88

99
### DQ Robotics Development Version
1010

11-
```{seealso}
12-
More information at http://doi.org/10.1109/MRA.2020.2997920.
13-
```
14-
1511
```commandline
1612
sudo add-apt-repository ppa:dqrobotics-dev/development
1713
sudo apt-get update
1814
sudo apt-get install libdqrobotics libdqrobotics-interface-json11 libdqrobotics-interface-coppeliasim libdqrobotics-interface-coppeliasim-zmq
1915
```
20-
21-
### Set up PPA
22-
23-
This will add the `SAS` repository to your `apt` sources.
24-
25-
```commandline
26-
curl -s --compressed "https://smartarmstack.github.io/smart_arm_stack_ROS2/KEY.gpg" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/smartarmstack_lgpl.gpg >/dev/null
27-
sudo curl -s --compressed -o /etc/apt/sources.list.d/smartarmstack_lgpl.list "https://smartarmstack.github.io/smart_arm_stack_ROS2/smartarmstack_lgpl.list"
28-
sudo apt update
29-
```
30-
31-
### Installation
32-
33-
```{important}
34-
At this stage, `ROS2` must be installed otherwise dependencies might not be found correctly.
35-
```
36-
37-
The command below will install all `SAS` packages.
38-
39-
```commandline
40-
sudo apt-get install ros-jazzy-sas-*
41-
```
42-
43-
### Update
44-
45-
The `SAS` packages will update together with your other `apt` packages.
46-
47-
```commandline
48-
sudo apt-get update
49-
```

0 commit comments

Comments
 (0)