Skip to content

Commit

Permalink
Add ComfyUI-aki python path to install.bat
Browse files Browse the repository at this point in the history
  • Loading branch information
yolain committed Jul 6, 2024
1 parent d0ebb95 commit 9f8ad77
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,19 @@

set "requirements_txt=%~dp0\requirements.txt"
set "python_exec=..\..\..\python_embeded\python.exe"
set "aki_python_exec=..\..\python\python.exe"

echo Installing EasyUse Requirements...

if exist "%python_exec%" (
echo Installing with ComfyUI Portable
"%python_exec%" -s -m pip install -r "%requirements_txt%"
) else (
)^
else if exist "%aki_python_exec%" (
echo Installing with ComfyUI Aki
"%python_exec%" -s -m pip install -r "%requirements_txt%"
)^
else (
echo Installing with system Python
pip install -r "%requirements_txt%"
)
Expand Down

0 comments on commit 9f8ad77

Please sign in to comment.