adbrasi commited on
Commit
da5ccd7
·
verified ·
1 Parent(s): b952767

Update ImageStudioArrakis2.sh

Browse files
Files changed (1) hide show
  1. ImageStudioArrakis2.sh +14 -2
ImageStudioArrakis2.sh CHANGED
@@ -104,7 +104,6 @@ CUSTOM_NODES=(
104
  "https://github.com/KoreTeknology/ComfyUI-Universal-Styler"
105
  "https://github.com/WASasquatch/was-node-suite-comfyui"
106
  "https://github.com/chflame163/ComfyUI_LayerStyle"
107
- "https://github.com/newtextdoc1111/ComfyUI-Autocomplete-Plus"
108
  "https://github.com/pythongosssss/ComfyUI-WD14-Tagger"
109
  "https://github.com/ltdrdata/ComfyUI-Impact-Pack"
110
  "https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
@@ -119,7 +118,6 @@ CUSTOM_NODES=(
119
  "https://github.com/Cezarsaint/rand0micoUploaderLoven"
120
  "https://github.com/adbrasi/pixivmosaic"
121
  "https://github.com/adbrasi/futfilter"
122
- "https://github.com/Artificial-Sweetener/comfyui-WhiteRabbit"
123
  "https://github.com/shiimizu/ComfyUI_smZNodes"
124
  "https://github.com/CoreyCorza/ComfyUI-CRZnodes"
125
  "https://github.com/MoonGoblinDev/Civicomfy"
@@ -293,6 +291,20 @@ fi
293
 
294
  log_success "ComfyUI instalado"
295
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
296
  # 5. Baixar modelos
297
  log_info "[5/6] Baixando modelos..."
298
 
 
104
  "https://github.com/KoreTeknology/ComfyUI-Universal-Styler"
105
  "https://github.com/WASasquatch/was-node-suite-comfyui"
106
  "https://github.com/chflame163/ComfyUI_LayerStyle"
 
107
  "https://github.com/pythongosssss/ComfyUI-WD14-Tagger"
108
  "https://github.com/ltdrdata/ComfyUI-Impact-Pack"
109
  "https://github.com/pythongosssss/ComfyUI-Custom-Scripts"
 
118
  "https://github.com/Cezarsaint/rand0micoUploaderLoven"
119
  "https://github.com/adbrasi/pixivmosaic"
120
  "https://github.com/adbrasi/futfilter"
 
121
  "https://github.com/shiimizu/ComfyUI_smZNodes"
122
  "https://github.com/CoreyCorza/ComfyUI-CRZnodes"
123
  "https://github.com/MoonGoblinDev/Civicomfy"
 
291
 
292
  log_success "ComfyUI instalado"
293
 
294
+ # 4. Corrigir PyTorch para RTX 5090 se detectado
295
+ log_info "[4/6] Verificando GPU..."
296
+
297
+ GPU_INFO=$(nvidia-smi --query-gpu=name --format=csv,noheader 2>/dev/null || echo "")
298
+
299
+ if [[ "$GPU_INFO" == *"5090"* ]] || [[ "$GPU_INFO" == *"5080"* ]]; then
300
+ log_warn "RTX 5090/5080 detectada - instalando PyTorch novo"
301
+ python -m pip install ${PIP_FLAGS} --force-reinstall torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu128
302
+ else
303
+ log_info "GPU: ${GPU_INFO:-Não detectada}"
304
+ fi
305
+
306
+ log_success "PyTorch configurado"
307
+
308
  # 5. Baixar modelos
309
  log_info "[5/6] Baixando modelos..."
310