File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,12 @@ def pip_install_comfyui_dependencies(
7272 "torchaudio" ,
7373 ]
7474
75- if plat == constants .OS .WINDOWS and cuda_version == constants .CUDAVersion .v12_6 :
75+ 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 :
7681 base_command += [
7782 "--extra-index-url" ,
7883 "https://download.pytorch.org/whl/cu126" ,
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ class PROC(str, Enum):
6262
6363
6464class CUDAVersion (str , Enum ):
65+ v12_9 = "12.9"
6566 v12_6 = "12.6"
6667 v12_4 = "12.4"
6768 v12_1 = "12.1"
You can’t perform that action at this time.
0 commit comments