@echo off setlocal cd /d "%~dp0" if not exist ".venv\Scripts\python.exe" ( echo Creo il venv... python -m venv .venv ) call .venv\Scripts\pip install -q -r requirements.txt call .venv\Scripts\python run.py endlocal