Добавить README.md

This commit is contained in:
Alex55 2026-05-19 14:30:25 +03:00
commit 16e67f8d43
1 changed files with 66 additions and 0 deletions

66
README.md Normal file
View File

@ -0,0 +1,66 @@
# 📌 Инструкция по запуску Python-скрипта на Windows
```text
1. Скачать Python:
https://www.python.org/downloads/windows/
2. Установить Python и ОБЯЗАТЕЛЬНО отметить:
Add Python to PATH
```
```bash
python --version
```
```text
Если версия отображается — Python установлен
```
```bash
cd C:\Users\USERNAME\Desktop\project
```
```bash
python -m venv venv
```
```bash
venv\Scripts\activate
```
```bash
pip install -r requirements.txt
```
```python
# файл main.py
PHONE = "+380000000000"
```
```text
Заменить строку выше на свой номер телефона (10 строка)
```
```bash
python main.py
```
```bash
CTRL + C
```
```bash
deactivate
```
```bash
py --version
```
```bash
py main.py
```
```bash
py -m venv venv
```