You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: comfy_cli/uv.py
+7-1Lines changed: 7 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -367,6 +367,7 @@ def __init__(
367
367
extraSpecs: list[str] |None=None,
368
368
cuda_version: str|None=None,
369
369
rocm_version: str|None=None,
370
+
skip_torch: bool=False,
370
371
):
371
372
"""Compiler/installer of Python dependencies based on uv
372
373
@@ -379,16 +380,21 @@ def __init__(
379
380
reqFilesCore (Optional[list[PathLike]]): list of core requirement files (requirements.txt, pyproject.toml, etc) to be included in the compilation. Any requirements determined from these files will override all other requirements
380
381
reqFilesExt (Optional[list[PathLike]]): list of requirement files (requirements.txt, pyproject.toml, etc) to be included in the compilation
381
382
extraSpecs (Optional[list[str]]): list of extra Python requirement specifiers to be included in the compilation
383
+
skip_torch (bool): if True, skip torch/torchvision/torchaudio installation and GPU index URLs
0 commit comments