From 942e8b96acecaeae33c7f089337a4b64e6b1cd0e Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Sat, 1 Feb 2025 11:42:17 -0800 Subject: [PATCH] Fix uv pip uninstall --- llama_stack/distribution/build_container.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama_stack/distribution/build_container.sh b/llama_stack/distribution/build_container.sh index 8d69627a1..4a0ab5f5c 100755 --- a/llama_stack/distribution/build_container.sh +++ b/llama_stack/distribution/build_container.sh @@ -143,7 +143,7 @@ if [ -n "$LLAMA_MODELS_DIR" ]; then fi add_to_container << EOF -RUN uv pip uninstall -y llama-models +RUN uv pip uninstall llama-models RUN uv pip install --no-cache $models_mount EOF