mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-01-14 23:08:05 -05:00
13 lines
230 B
Batchfile
13 lines
230 B
Batchfile
@echo off
|
|
|
|
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
|
set PATH=%PATH%;%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts
|
|
|
|
@rem update the repo
|
|
if exist ".git" (
|
|
call git pull
|
|
)
|
|
|
|
conda env update
|
|
|
|
pause |