mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-31 22:50:15 +01:00
24 lines
569 B
Batchfile
24 lines
569 B
Batchfile
|
@echo off
|
||
|
|
||
|
cd /D "%~dp0"
|
||
|
|
||
|
echo "%CD%"| findstr /C:" " >nul && echo This script relies on Miniconda which can not be silently installed under a path with spaces. && goto end
|
||
|
|
||
|
set PATH=%PATH%;%SystemRoot%\system32
|
||
|
|
||
|
@rem config
|
||
|
set CONDA_ROOT_PREFIX=%cd%\installer_files\conda
|
||
|
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
||
|
|
||
|
@rem activate installer env
|
||
|
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 webui.py --update
|
||
|
|
||
|
echo.
|
||
|
echo Done!
|
||
|
|
||
|
:end
|
||
|
pause
|