mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-18 20:27:58 +00:00
17 lines
348 B
Batchfile
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
|
|
)
|