Commit 631b9ca
docs: fix uv installation command for zsh by quoting extras (#1523)
The original command:
uv add langgraph-cli[inmem]
fails under zsh with:
zsh: no matches found: langgraph-cli[inmem]
because zsh interprets `[...]` as a glob pattern. Adding quotes ensures
the extras syntax is passed correctly to uv:
uv add "langgraph-cli[inmem]"
This fixes the installation instructions for macOS/zsh users.
Co-authored-by: Lauren Hirata Singh <[email protected]>1 parent 25f6d86 commit 631b9ca
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
0 commit comments