lollms-webui/uninstall.bat
2023-04-06 22:07:20 +02:00

17 lines
348 B
Batchfile

@echo off
echo This will uninstall the environment. Are you sure? [Y/N]
set /p choice=
if /i "%choice%" equ "Y" (
REM Download Python installer
echo -n
set /p="Removing virtual environment..." <nul
powershell -Command "rm env"
echo OK
pause
) else (
echo Please install Python and try again.
pause
exit /b 1
)