We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46501fa commit 9b3023fCopy full SHA for 9b3023f
2 files changed
comfy_cli/command/install.py
@@ -72,7 +72,12 @@ def pip_install_comfyui_dependencies(
72
"torchaudio",
73
]
74
75
- if plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_6:
+ if plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_9:
76
+ base_command += [
77
+ "--extra-index-url",
78
+ "https://download.pytorch.org/whl/cu129",
79
+ ]
80
+ elif plat == constants.OS.WINDOWS and cuda_version == constants.CUDAVersion.v12_6:
81
base_command += [
82
"--extra-index-url",
83
"https://download.pytorch.org/whl/cu126",
comfy_cli/constants.py
@@ -62,6 +62,7 @@ class PROC(str, Enum):
62
63
64
class CUDAVersion(str, Enum):
65
+ v12_9 = "12.9"
66
v12_6 = "12.6"
67
v12_4 = "12.4"
68
v12_1 = "12.1"
0 commit comments