docs: use python3 for Mac/Linux commands in README
This commit is contained in:
parent
d82d81c85a
commit
09deafbee9
12
README.md
12
README.md
|
|
@ -7,7 +7,8 @@ Connects Claude Desktop (or any MCP client) to the Cauldron M&A portal.
|
||||||
```bash
|
```bash
|
||||||
git clone https://git.zerotohero.it/Spaike/cauldron-mcp.git
|
git clone https://git.zerotohero.it/Spaike/cauldron-mcp.git
|
||||||
cd cauldron-mcp
|
cd cauldron-mcp
|
||||||
python setup.py
|
python3 setup.py # Mac / Linux
|
||||||
|
python setup.py # Windows
|
||||||
```
|
```
|
||||||
|
|
||||||
The wizard will:
|
The wizard will:
|
||||||
|
|
@ -31,13 +32,14 @@ Then restart Claude Desktop — done.
|
||||||
### Install dependencies
|
### Install dependencies
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python -m venv .venv
|
|
||||||
|
|
||||||
# Mac / Linux
|
# Mac / Linux
|
||||||
|
python3 -m venv .venv
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
# Windows
|
pip install mcp httpx
|
||||||
.venv\Scripts\activate
|
|
||||||
|
|
||||||
|
# Windows
|
||||||
|
python -m venv .venv
|
||||||
|
.venv\Scripts\activate
|
||||||
pip install mcp httpx
|
pip install mcp httpx
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue