Spaces:
Runtime error
Runtime error
File size: 251 Bytes
93dc773 |
1 2 3 4 5 6 7 8 |
@echo off
REM List all environments, filter out lines with "base" or "#"
for /f "tokens=1 delims= " %%i in ('conda env list ^| findstr /V "base" ^| findstr /V "#"') do (
echo Removing environment: %%i
conda env remove --name %%i --yes
)
pause
|