Skip to content

Commit 4acf5c0

Browse files
authored
Wget and curl both do the same thing. Remove wget and use only curl.
I noticed that we ask users to install both `wget` and `curl`. This feels redundant. Signed-off-by: Arjo Chakravarty <arjo129@gmail.com>
1 parent c3b9950 commit 4acf5c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

harmonic/install_ubuntu_src.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
2424
Install tools needed by this tutorial:
2525

2626
```bash
27-
sudo apt install python3-pip wget lsb-release gnupg curl
27+
sudo apt install python3-pip lsb-release gnupg curl
2828
```
2929

3030
## vcstool and colcon from pip
@@ -93,7 +93,7 @@ All the sources of gazebo-harmonic are declared in a yaml file. Download
9393
it to the workspace:
9494

9595
```bash
96-
wget https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-harmonic.yaml
96+
curl -O https://raw.githubusercontent.com/gazebo-tooling/gazebodistro/master/collection-harmonic.yaml
9797
```
9898

9999
Use `vcstool` to automatically retrieve all the Gazebo libraries sources from
@@ -114,7 +114,7 @@ method to install software dependencies.
114114
Add `packages.osrfoundation.org` to the apt sources list:
115115

116116
```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 -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
118118
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
119119
sudo apt-get update
120120
```

0 commit comments

Comments
 (0)