From 395203ce0f2daa7c537a89d49d3a78b8640b6aaf Mon Sep 17 00:00:00 2001 From: Hardik Shah Date: Thu, 20 Mar 2025 22:00:08 -0700 Subject: [PATCH] Update getting_started.ipynb Fix numpy version mismatch issue --- docs/getting_started.ipynb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/getting_started.ipynb b/docs/getting_started.ipynb index e361be277..c54d67f50 100644 --- a/docs/getting_started.ipynb +++ b/docs/getting_started.ipynb @@ -123,6 +123,8 @@ "outputs": [], "source": [ "# NBVAL_SKIP\n", + "!pip uninstall pandas numpy -y\n", + "!pip install pandas numpy\n", "# This will build all the dependencies you will need\n", "!UV_SYSTEM_PYTHON=1 llama stack build --template together --image-type venv" ]