5 lines
107 B
Bash
5 lines
107 B
Bash
|
@echo off
|
||
|
python -m venv venv
|
||
|
call venv\Scripts\activate
|
||
|
pip install -r requirements.txt
|
||
|
python main.py
|