From 09deafbee9246b79968a1d93b3738e150810f83c Mon Sep 17 00:00:00 2001 From: Spaike Date: Mon, 11 May 2026 16:30:13 +0200 Subject: [PATCH] docs: use python3 for Mac/Linux commands in README --- README.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 5d18364..2d88a19 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ Connects Claude Desktop (or any MCP client) to the Cauldron M&A portal. ```bash git clone https://git.zerotohero.it/Spaike/cauldron-mcp.git cd cauldron-mcp -python setup.py +python3 setup.py # Mac / Linux +python setup.py # Windows ``` The wizard will: @@ -31,13 +32,14 @@ Then restart Claude Desktop — done. ### Install dependencies ```bash -python -m venv .venv - # Mac / Linux +python3 -m venv .venv source .venv/bin/activate -# Windows -.venv\Scripts\activate +pip install mcp httpx +# Windows +python -m venv .venv +.venv\Scripts\activate pip install mcp httpx ```