mirror of
https://github.com/ParisNeo/lollms.git
synced 2024-12-18 20:27:58 +00:00
30 lines
781 B
Batchfile
30 lines
781 B
Batchfile
@echo off
|
|
@echo Starting LOLLMS Web UI...
|
|
cd /D "%~dp0"
|
|
|
|
@rem better isolation for virtual environment
|
|
SET "CONDA_SHLVL="
|
|
SET PYTHONNOUSERSITE=1
|
|
SET "PYTHONPATH="
|
|
SET "PYTHONHOME="
|
|
SET "TEMP=%cd%\installer_files\temp"
|
|
SET "TMP=%cd%\installer_files\temp"
|
|
|
|
@rem workaround for broken Windows installs
|
|
set PATH=%PATH%;%SystemRoot%\system32
|
|
|
|
set INSTALL_ENV_DIR=%cd%\installer_files\lollms_env
|
|
set MINICONDA_DIR=%cd%\installer_files\miniconda3
|
|
|
|
if not exist "%MINICONDA_DIR%\Scripts\activate.bat" ( echo Miniconda not found. Please reinstall lollms using win_install.bat. && goto end )
|
|
call "%MINICONDA_DIR%\Scripts\activate.bat" activate "%INSTALL_ENV_DIR%"
|
|
cd lollms
|
|
|
|
@rem set default cuda toolkit to the one in the environment
|
|
set "CUDA_PATH=%INSTALL_ENV_DIR%"
|
|
|
|
cmd.exe
|
|
|
|
:end
|
|
pause
|