mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-06-27 18:50:41 +00:00
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.
This commit is contained in:
parent
35de423556
commit
16e3d99942
1 changed files with 4 additions and 8 deletions
12
README.md
12
README.md
|
@ -78,18 +78,14 @@ You have two ways to install this repository:
|
||||||
```
|
```
|
||||||
|
|
||||||
* **Install from source**:
|
* **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:
|
Then, run the following commands:
|
||||||
```bash
|
```bash
|
||||||
mkdir -p ~/local
|
|
||||||
cd ~/local
|
|
||||||
git clone git@github.com:meta-llama/llama-stack.git
|
git clone git@github.com:meta-llama/llama-stack.git
|
||||||
|
|
||||||
conda create -n stack python=3.10
|
|
||||||
conda activate stack
|
|
||||||
|
|
||||||
cd llama-stack
|
cd llama-stack
|
||||||
pip install -e .
|
|
||||||
|
uv sync
|
||||||
|
uv pip install -e .
|
||||||
```
|
```
|
||||||
|
|
||||||
### Documentation
|
### Documentation
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue