Spaces:
Runtime error
Runtime error
File size: 204 Bytes
68964c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
@echo off
cd..
REM Check if the venv directory exists
if not exist venv (
echo Error: Virtual environment not found. Please create it first.
pause
exit /b 1
)
call venv\Scripts\activate
cmd
|