mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
12 lines
340 B
Batchfile
12 lines
340 B
Batchfile
@echo off
|
|
|
|
@rem prevent the window from closing after running the commands
|
|
if not defined in_subprocess (cmd /k set in_subprocess=y ^& %0 %*) & exit )
|
|
|
|
set INSTALL_ENV_DIR=%cd%\installer_files\env
|
|
set PATH=%INSTALL_ENV_DIR%;%INSTALL_ENV_DIR%\Library\bin;%INSTALL_ENV_DIR%\Scripts;%PATH%
|
|
|
|
call conda activate invokeai
|
|
|
|
echo Ready to dream..
|