From 9b6a2577b1ced370b314d32a8b97093c0f6b4c7e Mon Sep 17 00:00:00 2001 From: Surya Prakash Pathak Date: Fri, 28 Feb 2025 21:37:03 +0000 Subject: [PATCH] docs: Update llama-stack version in README.md (#1330) # What does this PR do? This PR updates the version in the [README.md](https://github.com/meta-llama/llama-stack/blob/main/docs/zero_to_hero_guide/README.md) to reflect the latest changes in Llama Stack setup. Previously, using **llama-stack==0.1.0** caused an error when running: ```bash llama stack build --template ollama --image-type conda ``` Upgrading to llama-stack==0.1.3 resolves this issue. ## Test Plan - Verified that `llama stack build --template ollama --image-type conda` works correctly. --------- Signed-off-by: Surya Prakash Pathak --- docs/zero_to_hero_guide/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zero_to_hero_guide/README.md b/docs/zero_to_hero_guide/README.md index 7dfd8e5fa..98f40bc3c 100644 --- a/docs/zero_to_hero_guide/README.md +++ b/docs/zero_to_hero_guide/README.md @@ -73,7 +73,7 @@ If you're looking for more specific topics, we have a [Zero to Hero Guide](#next Open a new terminal and install `llama-stack`: ```bash conda activate ollama - pip install llama-stack==0.1.0 + pip install -U llama-stack ``` ---