11 lines
192 B
Batchfile
11 lines
192 B
Batchfile
@echo off
|
|
chcp 65001 > nul
|
|
if not exist .venv (
|
|
python -m venv .venv
|
|
)
|
|
call .venv\Scripts\activate
|
|
python -m pip install --upgrade pip
|
|
pip install -r requirements.txt
|
|
python main.py
|
|
pause
|