From 016fd31603280ff076bfcf0be651dc97e048e625 Mon Sep 17 00:00:00 2001 From: Korzhavin Ivan Date: Thu, 28 Aug 2025 22:18:58 +0200 Subject: [PATCH] Fix run how-to to use uv for consistency with production case --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 125f847..a7a579f 100644 --- a/README.md +++ b/README.md @@ -141,18 +141,16 @@ git clone https://github.com/chigwell/telegram-mcp.git cd telegram-mcp ``` -### 2. Create a Virtual Environment +### 2. Install Dependencies with uv ```bash -python3 -m venv .venv -source .venv/bin/activate # On Windows: .venv\Scripts\activate -pip install -r requirements.txt +uv sync ``` ### 3. Generate a Session String ```bash -python3 session_string_generator.py +uv run session_string_generator.py ``` Follow the prompts to authenticate and update your `.env` file.