11 lines
146 B
Batchfile
11 lines
146 B
Batchfile
|
|
cd agent || exit /b 1
|
|
|
|
if not exist ".venv" (
|
|
python -m venv .venv
|
|
)
|
|
|
|
.venv\Scripts\activate.ps1
|
|
|
|
pip install poetry
|
|
poetry install --no-root |