From 18bfa4b88eb9ac74b530bc0269fa2bd1f3e924f3 Mon Sep 17 00:00:00 2001 From: xbl Date: Sun, 14 Jun 2026 14:50:05 +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 63b4d94..8deac46 100755 --- a/install.sh +++ b/install.sh @@ -52,13 +52,14 @@ if sys.version_info < (3, 9): " || die "Python 3.9 or higher is required" command -v pip3 >/dev/null 2>&1 || \ - python3 -m pip --version >/dev/null 2>&1 || \ + python3 -m pip --version >/dev/null 2>&1 || { 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" }