/
efr
/
SmartCity
Обзор
Документация
Войти
/
efr
/
SmartCity
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
start.bat
41 строка
907 B
Сергей Ефремов
start file
27 фев 2025, 19:59
27 фев 2025, 19:59
485b290
Код
Авторство
О чём код?
@echo off chcp 65001 > nul setlocal enabledelayedexpansion echo Checking Python version... python --version 2>&1 | findstr /r /c:" 3.10.6" > nul if %errorlevel% neq 0 ( echo. echo ERROR: Python 3.10.6 is required echo Download from the official website: echo https://www.python.org/downloads/release/python-3106/ timeout /t 15 start "" "https://www.python.org/downloads/release/python-3106/" pause exit /b 1 ) echo Checking for pip... python -m pip --version > nul 2>&1 if %errorlevel% neq 0 ( echo. echo ERROR: PIP is not installed! echo Install it using the command: echo python -m ensurepip --default-pip pause exit /b 1 ) echo Installing dependencies... pip install -r requirements.txt if %errorlevel% neq 0 ( echo. echo ERROR: Failed to install dependencies pause exit /b 1 ) echo Running the program... python main.py pause