From f01c79a94f0896245e4d7d357c5827d031f0dd2d Mon Sep 17 00:00:00 2001 From: Steve Martinelli <4118756+stevemar@users.noreply.github.com> Date: Fri, 5 May 2023 21:28:00 -0400 Subject: [PATCH] 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. --- docs/installation/010_INSTALL_AUTOMATED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/010_INSTALL_AUTOMATED.md b/docs/installation/010_INSTALL_AUTOMATED.md index 83b4415394..c710ed17b1 100644 --- a/docs/installation/010_INSTALL_AUTOMATED.md +++ b/docs/installation/010_INSTALL_AUTOMATED.md @@ -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 ```