2023-04-18 07:23:09 +02:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
cd /D "%~dp0"
|
|
|
|
|
|
|
|
set PATH=%PATH%;%SystemRoot%\system32
|
|
|
|
|
2023-05-09 06:49:27 +02:00
|
|
|
echo "%CD%"| findstr /C:" " >nul && echo This script relies on Miniconda which can not be silently installed under a path with spaces. && goto end
|
|
|
|
|
2023-05-02 17:28:20 +02:00
|
|
|
@rem fix failed install when installing to a separate drive
|
|
|
|
set TMP=%cd%\installer_files
|
|
|
|
set TEMP=%cd%\installer_files
|
|
|
|
|
2023-04-18 07:23:09 +02:00
|
|
|
@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
|