You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/installation-procedure.md
+13-19Lines changed: 13 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,38 +30,32 @@ Please find instructions in [this section](verifying-your-graphics-driver-instal
30
30
The advantage of this installation is that Webots will be updated automatically with system updates.
31
31
The installation requires the `root` privileges.
32
32
33
-
First of all, Webots should be authenticated with the [Cyberbotics.asc](https://cyberbotics.com/Cyberbotics.asc) signature file which can be installed using this command:
33
+
First of all, Webots should be authenticated with the [Cyberbotics.asc](https://cyberbotics.com/Cyberbotics.asc) signature file.
> **Note**: You can check with `apt-key list` if this signature file was already installed using the deprecated `apt-key add` method.
36
+
If so, you should delete it with `apt-key del <keyid>` before proceeding with the re-installation.
37
+
Similarly, if the repository was already listed, you should remove it using `apt-add-repository -y --remove 'deb https://cyberbotics.com/debian/ binary-amd64/'`.
38
38
39
-
Then, you can configure your APT package manager by adding the Cyberbotics repository.
40
-
Simply execute the following lines:
39
+
You can install the [Cyberbotics.asc](https://cyberbotics.com/Cyberbotics.asc) signature file using this command:
As an alternative, you can easily add the Cyberbotics repository from the `Software and Updates` application.
48
-
In the `Other Software` tab, click on the `Add...` button and copy the following line:
49
-
50
-
```text
51
-
deb https://cyberbotics.com/debian/ binary-amd64/
52
-
```
53
-
54
-
When you close the window, the APT packages list should be automatically updated.
55
-
Otherwise you can manually execute the following command:
47
+
Then, you can configure your APT package manager by adding the Cyberbotics repository.
48
+
Simply execute the following lines:
56
49
57
50
```bash
58
-
sudo apt-get update
51
+
echo"deb [arch=amd64 signed-by=/etc/apt/keyrings/Cyberbotics.asc] https://cyberbotics.com/debian binary-amd64/"| sudo tee /etc/apt/sources.list.d/Cyberbotics.list
52
+
sudo apt update
59
53
```
60
54
61
55
Then proceed to the installation of Webots using:
62
56
63
57
```bash
64
-
sudo apt-get install webots
58
+
sudo apt install webots
65
59
```
66
60
67
61
> **Note**: Although only the command line procedure is documented here, it is also possible to use any APT front-end tool, such as the Synaptic Package Manager, to proceed with the APT installation of Webots.
0 commit comments