InvokeAI/update.bat

14 lines
265 B
Batchfile
Raw Normal View History

@echo off
set INSTALL_ENV_DIR=%cd%\installer_files\env
2022-10-26 11:09:21 +00:00
set PATH=%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts;%INSTALL_ENV_DIR%\Library\usr\bin;%PATH%
@rem update the repo
if exist ".git" (
call git pull
)
conda env update
2022-10-13 09:50:29 +00:00
pause