[PR #1523] [MERGED] docs: fix uv installation command for zsh by quoting extras #1611

Closed
opened 2026-02-17 17:22:32 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1523
Author: @wsypower
Created: 11/19/2025
Status: Merged
Merged: 11/21/2025
Merged by: @lnhsingh

Base: mainHead: patch-1


📝 Commits (4)

  • bf85edb docs: fix uv installation command for zsh by quoting extras
  • 61f9dbd Merge branch 'main' into patch-1
  • 1bc8c53 Merge branch 'main' into patch-1
  • d1aabb2 Merge branch 'main' into patch-1

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 src/oss/langgraph/local-server.mdx (+1 -1)

📄 Description

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.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/1523 **Author:** [@wsypower](https://github.com/wsypower) **Created:** 11/19/2025 **Status:** ✅ Merged **Merged:** 11/21/2025 **Merged by:** [@lnhsingh](https://github.com/lnhsingh) **Base:** `main` ← **Head:** `patch-1` --- ### 📝 Commits (4) - [`bf85edb`](https://github.com/langchain-ai/docs/commit/bf85edb98c4e1692b386aa637efd0167a7166eb4) docs: fix uv installation command for zsh by quoting extras - [`61f9dbd`](https://github.com/langchain-ai/docs/commit/61f9dbdfce3bd86e32abe11d222e76d3010fd520) Merge branch 'main' into patch-1 - [`1bc8c53`](https://github.com/langchain-ai/docs/commit/1bc8c5308041ccfea57d43b92a8c0b75b312e9cb) Merge branch 'main' into patch-1 - [`d1aabb2`](https://github.com/langchain-ai/docs/commit/d1aabb2f839b8a46cef59c2d1cf5ff19b91b9d3c) Merge branch 'main' into patch-1 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `src/oss/langgraph/local-server.mdx` (+1 -1) </details> ### 📄 Description 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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:22:32 -05:00
yindo closed this issue 2026-02-17 17:22:32 -05:00
yindo changed title from [PR #1523] docs: fix uv installation command for zsh by quoting extras to [PR #1523] [MERGED] docs: fix uv installation command for zsh by quoting extras 2026-06-05 18:13:56 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#1611