File tree Expand file tree Collapse file tree 16 files changed +31
-32
lines changed Expand file tree Collapse file tree 16 files changed +31
-32
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ All the sources of ignition-citadel are declared in a yaml file. Download
55
55
it to the workspace:
56
56
57
57
``` bash
58
- wget https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-citadel.yaml
58
+ curl -O https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-citadel.yaml
59
59
```
60
60
61
61
Use ` vcstool ` to automatically retrieve all the Ignition libraries sources from
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ First install some necessary tools:
8
8
9
9
``` bash
10
10
sudo apt-get update
11
- sudo apt-get install lsb-release wget gnupg
11
+ sudo apt-get install lsb-release gnupg
12
12
```
13
13
14
14
Then install Ignition Citadel:
15
15
16
16
17
17
``` bash
18
18
sudo sh -c ' echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
19
- wget http ://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
19
+ curl https ://packages.osrfoundation.org/gazebo.key | sudo apt-key add -
20
20
sudo apt-get update
21
21
sudo apt-get install ignition-citadel
22
22
```
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
24
24
Install tools needed by this tutorial:
25
25
26
26
``` bash
27
- sudo apt install python3-pip wget lsb-release gnupg curl
27
+ sudo apt install python3-pip lsb-release gnupg curl
28
28
```
29
29
30
30
## vcstool and colcon from pip
@@ -90,7 +90,7 @@ All the sources of ignition-citadel are declared in a yaml file. Download
90
90
it to the workspace:
91
91
92
92
``` bash
93
- wget https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-citadel.yaml
93
+ curl -O https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-citadel.yaml
94
94
```
95
95
96
96
Use ` vcstool ` to automatically retrieve all the Ignition libraries sources from
@@ -112,7 +112,7 @@ Add `packages.osrfoundation.org` to the apt sources list:
112
112
113
113
``` bash
114
114
sudo sh -c ' echo "deb http://packages.osrfoundation.org/gazebo/ubuntu-stable `lsb_release -cs` main" > /etc/apt/sources.list.d/gazebo-stable.list'
115
- wget http ://packages.osrfoundation.org/gazebo.key -O - | sudo apt-key add -
115
+ curl https ://packages.osrfoundation.org/gazebo.key | sudo apt-key add -
116
116
sudo apt-get update
117
117
```
118
118
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ All the sources of ignition-fortress are declared in a yaml file. Download
55
55
it to the workspace:
56
56
57
57
``` bash
58
- wget https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-fortress.yaml
58
+ curl -O https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-fortress.yaml
59
59
```
60
60
61
61
Use ` vcstool ` to automatically retrieve all the Ignition libraries sources from
Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ First install some necessary tools:
8
8
9
9
``` bash
10
10
sudo apt-get update
11
- sudo apt-get install lsb-release wget gnupg
11
+ sudo apt-get install lsb-release gnupg
12
12
```
13
13
14
14
Then install Ignition Fortress:
15
15
16
16
17
17
``` bash
18
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
18
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
19
19
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
20
20
sudo apt-get update
21
21
sudo apt-get install ignition-fortress
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
24
24
Install tools needed by this tutorial:
25
25
26
26
``` bash
27
- sudo apt install python3-pip wget lsb-release gnupg curl
27
+ sudo apt install python3-pip lsb-release gnupg curl
28
28
```
29
29
30
30
## vcstool and colcon from pip
@@ -93,7 +93,7 @@ All the sources of ignition-fortress are declared in a yaml file. Download
93
93
it to the workspace:
94
94
95
95
``` bash
96
- wget https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-fortress.yaml
96
+ curl -O https://raw.githubusercontent.com/ignition-tooling/gazebodistro/master/collection-fortress.yaml
97
97
```
98
98
99
99
Use ` vcstool ` to automatically retrieve all the Ignition libraries sources from
@@ -114,7 +114,7 @@ method to install software dependencies.
114
114
Add ` packages.osrfoundation.org ` to the apt sources list:
115
115
116
116
``` bash
117
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
117
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
118
118
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
119
119
sudo apt-get update
120
120
```
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ All the sources of gazebo-garden are declared in a yaml file. Download
56
56
it to the workspace:
57
57
58
58
``` bash
59
- wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-garden.yaml
59
+ curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-garden.yaml
60
60
```
61
61
62
62
Use ` vcstool ` to automatically retrieve all the Gazebo libraries sources from
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ First install some necessary tools:
15
15
16
16
``` bash
17
17
sudo apt-get update
18
- sudo apt-get install lsb-release wget gnupg
18
+ sudo apt-get install lsb-release curl gnupg
19
19
```
20
20
21
21
Then install Gazebo Garden:
22
22
23
23
24
24
``` bash
25
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
25
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
26
26
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
27
27
sudo apt-get update
28
28
sudo apt-get install gz-garden
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
24
24
Install tools needed by this tutorial:
25
25
26
26
``` bash
27
- sudo apt install python3-pip wget lsb-release gnupg curl
27
+ sudo apt install python3-pip lsb-release gnupg curl
28
28
```
29
29
30
30
## vcstool and colcon from pip
@@ -93,7 +93,7 @@ All the sources of gazebo-garden are declared in a yaml file. Download
93
93
it to the workspace:
94
94
95
95
``` bash
96
- wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-garden.yaml
96
+ curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-garden.yaml
97
97
```
98
98
99
99
Use ` vcstool ` to automatically retrieve all the Gazebo libraries sources from
@@ -114,7 +114,7 @@ method to install software dependencies.
114
114
Add ` packages.osrfoundation.org ` to the apt sources list:
115
115
116
116
``` bash
117
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
117
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
118
118
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
119
119
sudo apt-get update
120
120
```
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ All the sources of gazebo-harmonic are declared in a yaml file. Download
55
55
it to the workspace:
56
56
57
57
``` bash
58
- wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-harmonic.yaml
58
+ curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-harmonic.yaml
59
59
```
60
60
61
61
Use ` vcstool ` to automatically retrieve all the Gazebo libraries sources from
Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ First install some necessary tools:
15
15
16
16
``` bash
17
17
sudo apt-get update
18
- sudo apt-get install lsb-release wget gnupg
18
+ sudo apt-get install lsb-release gnupg
19
19
```
20
20
21
21
Then install Gazebo Harmonic:
22
22
23
23
24
24
``` bash
25
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
25
+ curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
26
26
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
27
27
sudo apt-get update
28
28
sudo apt-get install gz-harmonic
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ method to install software dependencies.
114
114
Add ` packages.osrfoundation.org ` to the apt sources list:
115
115
116
116
``` bash
117
- sudo curl https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
117
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
118
118
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
119
119
sudo apt-get update
120
120
```
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ All the sources of gazebo-ionic are declared in a yaml file. Download
55
55
it to the workspace:
56
56
57
57
``` bash
58
- wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-ionic.yaml
58
+ curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-ionic.yaml
59
59
```
60
60
61
61
Use ` vcstool ` to automatically retrieve all the Gazebo libraries sources from
Original file line number Diff line number Diff line change @@ -8,14 +8,14 @@ First install some necessary tools:
8
8
9
9
``` bash
10
10
sudo apt-get update
11
- sudo apt-get install lsb-release wget gnupg
11
+ sudo apt-get install lsb-release gnupg
12
12
```
13
13
14
14
Then install Gazebo Ionic:
15
15
16
16
17
17
``` bash
18
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
18
+ curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
19
19
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
20
20
sudo apt-get update
21
21
sudo apt-get install gz-ionic
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
24
24
Install tools needed by this tutorial:
25
25
26
26
``` bash
27
- sudo apt install python3-pip wget lsb-release gnupg curl
27
+ sudo apt install python3-pip lsb-release gnupg curl
28
28
```
29
29
30
30
## vcstool and colcon from pip
@@ -93,7 +93,7 @@ All the sources of gazebo-ionic are declared in a yaml file. Download
93
93
it to the workspace:
94
94
95
95
``` bash
96
- wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-ionic.yaml
96
+ curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-ionic.yaml
97
97
```
98
98
99
99
Use ` vcstool ` to automatically retrieve all the Gazebo libraries sources from
@@ -114,7 +114,7 @@ method to install software dependencies.
114
114
Add ` packages.osrfoundation.org ` to the apt sources list:
115
115
116
116
``` bash
117
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
117
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
118
118
echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
119
119
sudo apt-get update
120
120
```
Original file line number Diff line number Diff line change @@ -10,17 +10,16 @@ sudo apt-get update
10
10
sudo apt-get install -y \
11
11
gnupg \
12
12
lsb-release \
13
- wget
13
+ curl
14
14
15
- sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
16
- echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] http ://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
15
+ sudo curl https://packages.osrfoundation.org/gazebo.gpg --output /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
16
+ echo " deb [arch=$( dpkg --print-architecture) signed-by=/usr/share/keyrings/pkgs-osrf-archive-keyring.gpg] https ://packages.osrfoundation.org/gazebo/ubuntu-stable $( lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/gazebo-stable.list > /dev/null
17
17
18
18
sudo apt-get update
19
19
20
20
sudo apt-get install -y \
21
21
build-essential \
22
22
cmake \
23
- curl \
24
23
doxygen \
25
24
git \
26
25
pkg-config \
You can’t perform that action at this time.
0 commit comments