From 7316181b1e38191c020e943e199dc4872034f6f9 Mon Sep 17 00:00:00 2001 From: ATATC Date: Thu, 11 Jul 2024 20:10:31 +0800 Subject: [PATCH] Skipped user interactions. (#273) --- scripts/python-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/python-install.sh b/scripts/python-install.sh index beba1547..da61095a 100644 --- a/scripts/python-install.sh +++ b/scripts/python-install.sh @@ -16,7 +16,7 @@ execute_root() { } echo "Adding APT repository..." -execute_root "add-apt-repository" "ppa:deadsnakes/ppa" +execute_root "add-apt-repository" "ppa:deadsnakes/ppa" "-y" execute_root "apt" "update" echo "Installing Python 3.12..." execute_root "apt" "install" "-y" "gcc" "python3.12" "python3.12-dev" "python3.12-venv"