2022-10-12 11:08:06 +00:00
|
|
|
@echo off
|
|
|
|
|
2022-10-12 16:45:38 +00:00
|
|
|
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%
|
2022-10-12 11:08:06 +00:00
|
|
|
|
2022-10-12 16:45:38 +00:00
|
|
|
call conda activate invokeai
|
2022-10-12 11:08:06 +00:00
|
|
|
|
2022-10-29 15:46:40 +00:00
|
|
|
echo Do you want to generate images using the
|
|
|
|
echo 1. command-line
|
|
|
|
echo 2. browser-based UI
|
2022-10-29 17:56:21 +00:00
|
|
|
echo 3. open the developer console
|
|
|
|
set /P restore="Please enter 1, 2 or 3: "
|
2022-10-29 15:46:40 +00:00
|
|
|
IF /I "%restore%" == "1" (
|
|
|
|
echo Starting the InvokeAI command-line..
|
|
|
|
python scripts\invoke.py
|
|
|
|
) ELSE IF /I "%restore%" == "2" (
|
|
|
|
echo Starting the InvokeAI browser-based UI..
|
|
|
|
python scripts\invoke.py --web
|
2022-10-29 17:56:21 +00:00
|
|
|
) ELSE IF /I "%restore%" == "3" (
|
|
|
|
echo Developer Console
|
|
|
|
call where python
|
|
|
|
call python --version
|
|
|
|
|
|
|
|
cmd /k
|
2022-10-29 15:46:40 +00:00
|
|
|
) ELSE (
|
|
|
|
echo Invalid selection
|
|
|
|
pause
|
|
|
|
exit /b
|
|
|
|
)
|