Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion comfy_cli/command/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ def pip_install_comfyui_dependencies(
"torchaudio",
]

if plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_6:
if plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_9:
base_command += [
"--extra-index-url",
"https://download.pytorch.org/whl/cu129",
]
elif plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_6:
base_command += [
"--extra-index-url",
"https://download.pytorch.org/whl/cu126",
Expand Down
1 change: 1 addition & 0 deletions comfy_cli/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ class PROC(str, Enum):


class CUDAVersion(str, Enum):
v12_9 = "12.9"
v12_6 = "12.6"
v12_4 = "12.4"
v12_1 = "12.1"
Expand Down