mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-29 15:23:51 +00:00
Update README.md
This commit is contained in:
parent
b8aa99b034
commit
ad6c889cca
1 changed files with 22 additions and 1 deletions
23
README.md
23
README.md
|
@ -7,8 +7,9 @@ The Stack consists of toolchain-apis and agentic-apis. This repo contains the to
|
||||||
|
|
||||||
You can install this repository as a [package](https://pypi.org/project/llama-toolchain/) by just doing `pip install llama-toolchain`
|
You can install this repository as a [package](https://pypi.org/project/llama-toolchain/) by just doing `pip install llama-toolchain`
|
||||||
|
|
||||||
If you want to install from source:
|
### Install from conda
|
||||||
|
|
||||||
|
If you want to install from source:
|
||||||
```bash
|
```bash
|
||||||
mkdir -p ~/local
|
mkdir -p ~/local
|
||||||
cd ~/local
|
cd ~/local
|
||||||
|
@ -21,6 +22,26 @@ cd llama-toolchain
|
||||||
pip install -e .
|
pip install -e .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### In Linux
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python3 -m venv venv
|
||||||
|
source venv/bin/activate
|
||||||
|
|
||||||
|
pip install llama-toolchain
|
||||||
|
```
|
||||||
|
|
||||||
|
### For Windows
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python -m venv venv
|
||||||
|
venv\Scripts\activate # For Command Prompt
|
||||||
|
# or
|
||||||
|
.\venv\Scripts\Activate.ps1 # For PowerShell
|
||||||
|
|
||||||
|
pip install llama-toolchain
|
||||||
|
```
|
||||||
|
|
||||||
## Test with cli
|
## Test with cli
|
||||||
|
|
||||||
We have built a llama cli to make it easy to configure / run parts of the toolchain
|
We have built a llama cli to make it easy to configure / run parts of the toolchain
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue