From 2f01ff0639368e46f9142ccfc9e6cfc942085e1e Mon Sep 17 00:00:00 2001 From: pplate Date: Sat, 4 Apr 2026 12:20:28 +0200 Subject: [PATCH] fix(mcp-image-gen): correct ComfyUI install instructions in USAGE.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ComfyUI is NOT on PyPI — `pip install comfyui` fails with "No matching distribution found". Remove the wrong Option A. Replace with: - Warning note that pip install does not work - Only correct method: git clone from GitHub + pip install -r requirements.txt ROCm status confirmed: rocm-smi 3.1.0 / ROCm-SMI-LIB 7.7.0 installed. --- mcp/mcp-image-gen/USAGE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mcp/mcp-image-gen/USAGE.md b/mcp/mcp-image-gen/USAGE.md index 75b59d8..8bc29d3 100644 --- a/mcp/mcp-image-gen/USAGE.md +++ b/mcp/mcp-image-gen/USAGE.md @@ -27,11 +27,11 @@ The MCP server connects to ComfyUI's REST API at `http://localhost:8188`. If Com ### Install ComfyUI -```bash -# Option A — pip install (simplest) -pip install comfyui +> ⚠️ **ComfyUI is NOT on PyPI** — `pip install comfyui` will fail with "No matching distribution found". +> It must be installed from source via `git clone`. -# Option B — git clone (more control) +```bash +# Clone from source (the only correct installation method) git clone https://github.com/comfyanonymous/ComfyUI.git cd ComfyUI pip install -r requirements.txt