mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
docs: quote pip install extras to fix zsh glob errors (#2815)
zsh interprets square brackets as glob patterns, so `pip install hermes-agent[voice]` fails with 'no matches found'. Quote all pip install commands with extras across 5 docs pages (12 instances). Reported by OFumik0OP.
This commit is contained in:
parent
9718334962
commit
0b993c1e07
5 changed files with 12 additions and 12 deletions
|
|
@ -336,7 +336,7 @@ vLLM supports tool calling, structured output, and multi-modal models. Use `--en
|
|||
|
||||
```bash
|
||||
# Start SGLang server
|
||||
pip install sglang[all]
|
||||
pip install "sglang[all]"
|
||||
python -m sglang.launch_server \
|
||||
--model meta-llama/Llama-3.1-70B-Instruct \
|
||||
--port 8000 \
|
||||
|
|
@ -379,7 +379,7 @@ Download GGUF models from [Hugging Face](https://huggingface.co/models?library=g
|
|||
|
||||
```bash
|
||||
# Install and start
|
||||
pip install litellm[proxy]
|
||||
pip install "litellm[proxy]"
|
||||
litellm --model anthropic/claude-sonnet-4 --port 4000
|
||||
|
||||
# Or with a config file for multiple models:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue