Skip to content

Commit 631b9ca

Browse files
wsypowerlnhsingh
andauthored
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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oss/langgraph/local-server.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pip install -U "langgraph-cli[inmem]"
2424

2525
```bash uv
2626
# Python >= 3.11 is required.
27-
uv add langgraph-cli[inmem]
27+
uv add 'langgraph-cli[inmem]'
2828
```
2929
</CodeGroup>
3030
:::

0 commit comments

Comments
 (0)