Add venv activate step

This commit is contained in:
Pavindu Lakshan 2025-04-04 14:45:58 +05:30 committed by GitHub
parent 86fb278ba5
commit 6ce52261db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,14 +38,19 @@ If you dont have an MCP server, follow the instructions given here to start y
```bash ```bash
python3 -m venv .venv python3 -m venv .venv
``` ```
3. Activate virtual environment.
3. Install dependencies. ```bash
source .venv/bin/activate
```
4. Install dependencies.
``` ```
pip3 install -r requirements.txt pip3 install -r requirements.txt
``` ```
4. Start the server. 5. Start the server.
```bash ```bash
python3 echo_server.py python3 echo_server.py