mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-20 07:50:02 +08:00
11 lines
199 B
Batchfile
11 lines
199 B
Batchfile
@echo off
|
|
echo Installing Taichi lang backend...
|
|
|
|
if exist "%python_exec%" (
|
|
%python_exec% -s -m pip install taichi
|
|
) else (
|
|
echo Installing with system Python
|
|
pip install taichi
|
|
)
|
|
|
|
pause |