From ed78238ddc60359d22487dbf325080f7a7e3a835 Mon Sep 17 00:00:00 2001 From: xbl Date: Sun, 14 Jun 2026 14:43:50 +0200 Subject: [PATCH] modified: install.sh --- install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c228b3f..63b4d94 100755 --- a/install.sh +++ b/install.sh @@ -53,11 +53,12 @@ if sys.version_info < (3, 9): command -v pip3 >/dev/null 2>&1 || \ python3 -m pip --version >/dev/null 2>&1 || \ - die "pip is required but not installed" + warn "pip not found" echo "" echo " On Debian, install it with:" echo " apt install pip" echo "" + die "pip is required but not installed" success "Dependencies OK" }