From c0d1ac9f54970bfd0762cb2d9314889012bf98ce Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 14 Mar 2026 11:50:01 -0700 Subject: [PATCH] fix(install.sh): force-reinstall from git to bypass cached PyPI version --- scripts/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install.sh b/scripts/install.sh index dd1297008b3..b288b581d42 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -81,7 +81,7 @@ echo "" header "Installing litellm[proxy]…" echo "" -"$PYTHON_BIN" -m pip install --quiet --progress-bar off "${LITELLM_PACKAGE}" \ +"$PYTHON_BIN" -m pip install --quiet --progress-bar off --upgrade --force-reinstall "${LITELLM_PACKAGE}" \ || die "pip install failed. Try manually: $PYTHON_BIN -m pip install '${LITELLM_PACKAGE}'" # ── find litellm binary ────────────────────────────────────────────────────