From bf85edb98c4e1692b386aa637efd0167a7166eb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AD=8F?= <2553241022@qq.com> Date: Wed, 19 Nov 2025 15:37:34 +0800 Subject: [PATCH] docs: fix uv installation command for zsh by quoting extras 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. --- src/oss/langgraph/local-server.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oss/langgraph/local-server.mdx b/src/oss/langgraph/local-server.mdx index 9dbe7a923b..f9836d4570 100644 --- a/src/oss/langgraph/local-server.mdx +++ b/src/oss/langgraph/local-server.mdx @@ -24,7 +24,7 @@ pip install -U "langgraph-cli[inmem]" ```bash uv # Python >= 3.11 is required. -uv add langgraph-cli[inmem] +uv add 'langgraph-cli[inmem]' ``` :::