add -y to the automated install instructions

when copying the automated install instructions from the docs into a terminal, the line to install the python packages failed as it was missing the `-y` flag.
This commit is contained in:
Steve Martinelli 2023-05-05 21:28:00 -04:00 committed by GitHub
parent 463f6352ce
commit f01c79a94f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,7 +89,7 @@ experimental versions later.
sudo apt update
sudo apt install -y software-properties-common
sudo add-apt-repository -y ppa:deadsnakes/ppa
sudo apt install python3.10 python3-pip python3.10-venv
sudo apt install -y python3.10 python3-pip python3.10-venv
sudo update-alternatives --install /usr/local/bin/python python /usr/bin/python3.10 3
```