mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 16:49:50 +00:00
14 lines
No EOL
359 B
Markdown
14 lines
No EOL
359 B
Markdown
```bash
|
|
source ~/miniconda3/bin/activate
|
|
conda create --prefix ./envs python=3.10
|
|
|
|
source ~/miniconda3/bin/activate
|
|
conda activate ./envs
|
|
|
|
pip install -e . \
|
|
&& llama stack build --config ./build.yaml --image-type conda \
|
|
&& llama stack run ./run.yaml \
|
|
--port 5001
|
|
|
|
pytest llama_stack/providers/tests/inference/test_text_inference.py -v -k groq --lf -s
|
|
``` |