From 5c757ba9d0e22abc6fd5d1766da2f2f60c87e6dd Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Sat, 14 Mar 2026 12:03:06 -0700 Subject: [PATCH] fix(install.sh): use litellm.proxy.proxy_cli module (no __main__.py exists) --- scripts/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 0f6ccf11ac1..c4bb91e93fc 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -88,7 +88,7 @@ echo "" echo "" success "LiteLLM installed" -installed_ver="$("$PYTHON_BIN" -m litellm --version 2>&1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | head -1 || true)" +installed_ver="$("$PYTHON_BIN" -m litellm.proxy.proxy_cli --version 2>&1 | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | head -1 || true)" [ -n "$installed_ver" ] && info "Version: $installed_ver" # ── PATH hint ────────────────────────────────────────────────────────────── @@ -104,7 +104,7 @@ read -r answer