File size: 345 Bytes
82ea528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo off

set "requirements_txt=%~dp0\requirements-no-cupy.txt"
set "python_exec=..\..\..\python_embeded\python.exe"

echo Installing ComfyUI Frame Interpolation..

if exist "%python_exec%" (
    echo Installing with ComfyUI Portable
    %python_exec% -s install.py
) else (
    echo Installing with system Python
    python install.py
)

pause