From 16e3d99942755b98288fa3b0801e4df1d5053b29 Mon Sep 17 00:00:00 2001 From: Yuan Tang Date: Fri, 21 Feb 2025 00:05:47 -0500 Subject: [PATCH] docs: Simplify installation guide with `uv` (#1196) Given that we already switched to uv in other places. We should recommend uv in README's installation guide as well. It's a lot simpler. --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index baec8c1bd..3946deea6 100644 --- a/README.md +++ b/README.md @@ -78,18 +78,14 @@ You have two ways to install this repository: ``` * **Install from source**: - If you prefer to install from the source code, make sure you have [conda installed](https://docs.conda.io/projects/conda/en/stable). + If you prefer to install from the source code, we recommend using [uv](https://github.com/astral-sh/uv). Then, run the following commands: ```bash - mkdir -p ~/local - cd ~/local git clone git@github.com:meta-llama/llama-stack.git - - conda create -n stack python=3.10 - conda activate stack - cd llama-stack - pip install -e . + + uv sync + uv pip install -e . ``` ### Documentation