2023-09-21 18:35:53 -04:00
|
|
|
@echo off
|
|
|
|
|
|
|
|
cd /D "%~dp0"
|
|
|
|
|
|
|
|
set PATH=%PATH%;%SystemRoot%\system32
|
|
|
|
|
|
|
|
echo "%CD%"| findstr /C:" " >nul && echo This script relies on Miniconda which can not be silently installed under a path with spaces. && goto end
|
|
|
|
|
|
|
|
@rem fix failed install when installing to a separate drive
|
|
|
|
set TMP=%cd%\installer_files
|
|
|
|
set TEMP=%cd%\installer_files
|
|
|
|
|
2023-09-21 22:52:29 -04:00
|
|
|
@rem deactivate existing conda envs as needed to avoid conflicts
|
2023-09-23 07:33:44 -04:00
|
|
|
(call conda deactivate && call conda deactivate && call conda deactivate) 2>nul
|
2023-09-21 22:52:29 -04:00
|
|
|
|
2023-09-21 18:35:53 -04:00
|
|
|
@rem config
|
|
|
|
set CONDA_ROOT_PREFIX=%cd%\installer_files\conda
|
|
|
|
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
|
|
|
|
|
|
|
@rem environment isolation
|
|
|
|
set PYTHONNOUSERSITE=1
|
|
|
|
set PYTHONPATH=
|
|
|
|
set PYTHONHOME=
|
|
|
|
set "CUDA_PATH=%INSTALL_ENV_DIR%"
|
|
|
|
set "CUDA_HOME=%CUDA_PATH%"
|
|
|
|
|
|
|
|
@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
|
2024-03-04 13:52:24 -05:00
|
|
|
call python one_click.py --update-wizard && (
|
2023-09-28 16:56:15 -04:00
|
|
|
echo.
|
|
|
|
echo Done!
|
|
|
|
)
|
2023-09-21 18:35:53 -04:00
|
|
|
|
|
|
|
:end
|
|
|
|
pause
|