From 88dee44ac012590c4989c6f553ca79bf59727515 Mon Sep 17 00:00:00 2001 From: Zeus Date: Sun, 22 Feb 2026 10:30:43 +0000 Subject: [PATCH] fix: use pipx for datasette installation on Debian --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index 077f087..26b5eb9 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -27,7 +27,7 @@ fi # Install datasette if not present if ! command -v datasette &> /dev/null; then echo "Installing datasette..." - pip3 install datasette --quiet + pipx install datasette 2>&1 || true fi # Clone or update repo