6 lines
92 B
Batchfile
6 lines
92 B
Batchfile
|
@echo off
|
||
|
|
||
|
python -m venv env
|
||
|
call env\Scripts\activate.bat
|
||
|
pip install -r requirements.txt
|