Skip to content

Commit 367ad86

Browse files
author
Murilo Marinho
committed
[pre_requisites] Adjusting installation to not repeat information
1 parent b86ef4c commit 367ad86

File tree

3 files changed

+33
-41
lines changed

3 files changed

+33
-41
lines changed

docs/installation.md

Lines changed: 0 additions & 40 deletions
This file was deleted.

docs/myst.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project:
2323
id: CC-BY-NC-SA-4.0
2424
toc:
2525
- file: README.md
26-
- file: installation.md
26+
- file: pre_requisites.md
2727
- title: "Modules"
2828
children:
2929
- file: submodules/sas_ur_control_template/sas_ur_control_template_README.md

docs/pre_requisites.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Pre requisites
2+
3+
## ROS 2 Jazzy
4+
5+
You can refer to the official documentation at https://docs.ros.org/en/jazzy/Installation/Ubuntu-Install-Debs.html
6+
7+
A softer explanation is available in https://ros2-tutorial.readthedocs.io/en/latest/installation.html.
8+
9+
## DQ Robotics Development Version
10+
11+
### C++
12+
13+
```{important}
14+
The `development` version is needed.
15+
```
16+
17+
```commandline
18+
sudo add-apt-repository ppa:dqrobotics-dev/development
19+
sudo apt-get update
20+
sudo apt-get install libdqrobotics libdqrobotics-interface-json11 libdqrobotics-interface-coppeliasim libdqrobotics-interface-coppeliasim-zmq
21+
```
22+
23+
### Python
24+
25+
```{important}
26+
Because ROS2 does not currently support `venv`, it is recommended
27+
to install this system-wide.
28+
```
29+
30+
```commandline
31+
python3 -m pip install dqrobotics --pre --break-system-packages
32+
```

0 commit comments

Comments
 (0)