File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,28 @@ sudo add-apt-repository ppa:dqrobotics-dev/development
1313sudo apt-get update
1414sudo 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+ ```
You can’t perform that action at this time.
0 commit comments