UmeAiRT commited on
Commit
cdb1408
·
verified ·
1 Parent(s): 6865e62

Upload 4 files

Browse files
UmeAiRT-WAN2.1-AllinOne-Auto_install.bat CHANGED
@@ -91,13 +91,19 @@ echo Installing NVIDIA Apex...
91
  git clone https://github.com/NVIDIA/apex "%basePath%/python_embeded/apex" >> "%installPath%\logs\install.txt" 2>&1
92
  "%basePath%\python_embeded\python.exe" -s -m pip install -e "%basePath%/python_embeded/apex" >> "%installPath%\logs\install.txt" 2>&1
93
 
 
 
 
94
  echo Installing Triton...
95
- curl -L -o "%basePath%\python_embeded\triton-3.2.0-cp310-cp310-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp310-cp310-win_amd64.whl >> "%installPath%\logs\install.txt" 2>&1
96
- curl -L -o "%basePath%\python_embeded\triton-3.2.0-cp311-cp311-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp311-cp311-win_amd64.whl >> "%installPath%\logs\install.txt" 2>&1
97
- curl -L -o "%basePath%\python_embeded\triton-3.2.0-cp312-cp312-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp312-cp312-win_amd64.whl >> "%installPath%\logs\install.txt" 2>&1
98
- "%basePath%\python_embeded\python.exe" -m pip install "%basePath%\python_embeded\triton-3.2.0-cp310-cp310-win_amd64.whl" >> "%installPath%\logs\install.txt" 2>&1
99
- "%basePath%\python_embeded\python.exe" -m pip install "%basePath%\python_embeded\triton-3.2.0-cp311-cp311-win_amd64.whl" >> "%installPath%\logs\install.txt" 2>&1
100
- "%basePath%\python_embeded\python.exe" -m pip install "%basePath%\python_embeded\triton-3.2.0-cp312-cp312-win_amd64.whl" >> "%installPath%\logs\install.txt" 2>&1
 
 
 
101
 
102
  REM Clone ComfyUI-Manager
103
  echo Installing ComfyUI-Manager...
 
91
  git clone https://github.com/NVIDIA/apex "%basePath%/python_embeded/apex" >> "%installPath%\logs\install.txt" 2>&1
92
  "%basePath%\python_embeded\python.exe" -s -m pip install -e "%basePath%/python_embeded/apex" >> "%installPath%\logs\install.txt" 2>&1
93
 
94
+ echo Installing Visual Studio Build Tools...
95
+ winget install --id Microsoft.VisualStudio.2022.BuildTools -e --source winget --override "--quiet --wait --norestart --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.20348"
96
+
97
  echo Installing Triton...
98
+ "%basePath%\python_embeded\python.exe" -s -m pip install triton-windows==3.2.0.post17 >> "%installPath%\logs\install.txt" 2>&1
99
+
100
+ echo Downloading Python include/libs...
101
+ curl -L -o "%basePath%\python_embeded\python_3.12.9_include_libs.zip" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/python_3.12.9_include_libs.zip?download=true >> "%installPath%\logs\install.txt" 2>&1
102
+ tar -xf "%basePath%\python_embeded\python_3.12.9_include_libs.zip" -C "%basePath%\python_embeded" >> "%installPath%\logs\install.txt" 2>&1
103
+
104
+ echo Installing SageAttention...
105
+ git clone https://github.com/thu-ml/SageAttention "%basePath%/python_embeded/SageAttention" >> "%installPath%\logs\install.txt" 2>&1
106
+ "%basePath%\python_embeded\python.exe" -s -m pip install -e "%basePath%/python_embeded/SageAttention" >> "%installPath%\logs\install.txt" 2>&1
107
 
108
  REM Clone ComfyUI-Manager
109
  echo Installing ComfyUI-Manager...
UmeAiRT-WAN2.1-Missing_nodes.bat CHANGED
@@ -76,13 +76,21 @@ echo Installing xformers...
76
  echo Installing NVIDIA Apex...
77
  git clone https://github.com/NVIDIA/apex "%pythonPath%/apex" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
78
  "%pythonPath%\python.exe" -s -m pip install -e "%pythonPath%/apex" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
 
 
 
 
79
  echo Installing Triton...
80
- curl -L -o "%pythonPath%\triton-3.2.0-cp310-cp310-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp310-cp310-win_amd64.whl >> "%basePath%\logs\Missing_nodes.txt" 2>&1
81
- curl -L -o "%pythonPath%\triton-3.2.0-cp311-cp311-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp311-cp311-win_amd64.whl >> "%basePath%\logs\Missing_nodes.txt" 2>&1
82
- curl -L -o "%pythonPath%\triton-3.2.0-cp312-cp312-win_amd64.whl" https://github.com/woct0rdho/triton-windows/releases/download/v3.2.0-windows.post10/triton-3.2.0-cp312-cp312-win_amd64.whl >> "%basePath%\logs\Missing_nodes.txt" 2>&1
83
- "%pythonPath%\python.exe" -m pip install "%pythonPath%\triton-3.2.0-cp310-cp310-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
84
- "%pythonPath%\python.exe" -m pip install "%pythonPath%\triton-3.2.0-cp311-cp311-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
85
- "%pythonPath%\python.exe" -m pip install "%pythonPath%\triton-3.2.0-cp312-cp312-win_amd64.whl" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
 
 
 
 
86
 
87
  REM Clone ComfyUI-Manager
88
  echo Installing ComfyUI-Manager...
 
76
  echo Installing NVIDIA Apex...
77
  git clone https://github.com/NVIDIA/apex "%pythonPath%/apex" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
78
  "%pythonPath%\python.exe" -s -m pip install -e "%pythonPath%/apex" >> "%basePath%\logs\Missing_nodes.txt" 2>&1
79
+
80
+ echo Installing Visual Studio Build Tools...
81
+ winget install --id Microsoft.VisualStudio.2022.BuildTools -e --source winget --override "--quiet --wait --norestart --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.Component.Windows10SDK.20348"
82
+
83
  echo Installing Triton...
84
+ "%basePath%\python_embeded\python.exe" -s -m pip install triton-windows==3.2.0.post17 >> "%installPath%\logs\install.txt" 2>&1
85
+
86
+ echo Downloading Python include/libs...
87
+ curl -L -o "%basePath%\python_embeded\python_3.12.9_include_libs.zip" https://huggingface.co/UmeAiRT/ComfyUI-Auto_installer/resolve/main/others/python_3.12.9_include_libs.zip?download=true >> "%installPath%\logs\install.txt" 2>&1
88
+ tar -xf "%basePath%\python_embeded\python_3.12.9_include_libs.zip" -C "%basePath%\python_embeded" >> "%installPath%\logs\install.txt" 2>&1
89
+
90
+ echo Installing SageAttention...
91
+ git clone https://github.com/thu-ml/SageAttention "%basePath%/python_embeded/SageAttention" >> "%installPath%\logs\install.txt" 2>&1
92
+ "%basePath%\python_embeded\python.exe" -s -m pip install -e "%basePath%/python_embeded/SageAttention" >> "%installPath%\logs\install.txt" 2>&1
93
+
94
 
95
  REM Clone ComfyUI-Manager
96
  echo Installing ComfyUI-Manager...