Merge pull request #21 from korjavin/main

Fix run how-to to use uv for consistency with production case
This commit is contained in:
Eugene Evstafev 2025-08-30 23:06:09 +01:00 committed by GitHub
commit b15c3e7b29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -141,18 +141,16 @@ git clone https://github.com/chigwell/telegram-mcp.git
cd telegram-mcp cd telegram-mcp
``` ```
### 2. Create a Virtual Environment ### 2. Install Dependencies with uv
```bash ```bash
python3 -m venv .venv uv sync
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txt
``` ```
### 3. Generate a Session String ### 3. Generate a Session String
```bash ```bash
python3 session_string_generator.py uv run session_string_generator.py
``` ```
Follow the prompts to authenticate and update your `.env` file. Follow the prompts to authenticate and update your `.env` file.