Skip to content

Commit 1bf3267

Browse files
committed
feat: add uv installation support #1503
- Update README with uv installation instructions - Add PowerShell installation example using uv - Document uv as alternative to pip for faster setup
1 parent 23c1e2a commit 1bf3267

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,9 +309,10 @@ curl -s -H "Authorization: Bearer $MCPGATEWAY_BEARER_TOKEN" \
309309
```powershell
310310
# 1️⃣ Isolated env + install from PyPI
311311
mkdir mcpgateway ; cd mcpgateway
312-
python3 -m venv .venv ; .\.venv\Scripts\Activate.ps1
313-
pip install --upgrade pip
314-
pip install mcp-contextforge-gateway
312+
uv init
313+
uv venv --python 3.11.6
314+
.\.venv\Scripts\activate
315+
uv pip install mcp-contextforge-gateway
315316
316317
# 2️⃣ Copy and customize the configuration
317318
# Download the example environment file

0 commit comments

Comments
 (0)