Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wget and curl both do the same thing. Remove wget and use only curl. #434

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions harmonic/install_ubuntu_src.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ cases where the default option cannot be easily changed.
Install tools needed by this tutorial:

```bash
sudo apt install python3-pip wget lsb-release gnupg curl
sudo apt install python3-pip lsb-release gnupg curl
```

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

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

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

```bash
sudo wget https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
sudo curl https://packages.osrfoundation.org/gazebo.gpg -O /usr/share/keyrings/pkgs-osrf-archive-keyring.gpg
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
sudo apt-get update
```
Expand Down
Loading