From f2258e2a509526334b3d2642c0d45f7549b9b422 Mon Sep 17 00:00:00 2001 From: killian <63927363+KillianLucas@users.noreply.github.com> Date: Tue, 3 Dec 2024 20:25:18 -0800 Subject: [PATCH] Update new-installer.sh to use --system flag for pip installation --- installers/new-installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installers/new-installer.sh b/installers/new-installer.sh index 6713fa3bb..463d71f8f 100644 --- a/installers/new-installer.sh +++ b/installers/new-installer.sh @@ -20,7 +20,7 @@ fi # Direct installation using uv with specific Python version echo "Installing package..." -uv pip install --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH" +uv pip install --system --python "$PYTHON_VERSION" "git+$REPO_URL@$BRANCH" echo echo "Installation complete!" \ No newline at end of file