Better error handling during install/update

This commit is contained in:
oobabooga 2023-09-28 13:56:15 -07:00
parent 85f45cafa1
commit 822ba7fcbb
4 changed files with 14 additions and 18 deletions

View file

@ -28,10 +28,10 @@ set "CUDA_HOME=%CUDA_PATH%"
call "%CONDA_ROOT_PREFIX%\condabin\conda.bat" activate "%INSTALL_ENV_DIR%" || ( echo. && echo Miniconda hook not found. && goto end )
@rem update installer env
call python one_click.py --update
echo.
echo Done!
call python one_click.py --update && (
echo.
echo Done!
)
:end
pause