Instructions to use UmeAiRT/ComfyUI-Auto-Installer-Assets with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use UmeAiRT/ComfyUI-Auto-Installer-Assets with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("UmeAiRT/ComfyUI-Auto-Installer-Assets", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
Upload Install-ComfyUI.ps1
Browse files
scripts/ComfyUI/Install-ComfyUI.ps1
CHANGED
|
@@ -344,7 +344,10 @@ if (-not (Test-Path $workflowCloneDest)) { Invoke-AndLog "git" "clone https://gi
|
|
| 344 |
|
| 345 |
# --- Étape 9: Téléchargement optionnel des packs de modèles ---
|
| 346 |
Write-Log "`nStep 9: Optional Model Pack Downloads..." -Color Yellow
|
| 347 |
-
$modelPacks = @(
|
|
|
|
|
|
|
|
|
|
| 348 |
$scriptsSubFolder = Join-Path $InstallPath "scripts"
|
| 349 |
foreach ($pack in $modelPacks) {
|
| 350 |
$scriptPath = Join-Path $scriptsSubFolder $pack.ScriptName
|
|
|
|
| 344 |
|
| 345 |
# --- Étape 9: Téléchargement optionnel des packs de modèles ---
|
| 346 |
Write-Log "`nStep 9: Optional Model Pack Downloads..." -Color Yellow
|
| 347 |
+
$modelPacks = @(
|
| 348 |
+
@{Name="FLUX"; ScriptName="Download-FLUX-Models.ps1"},
|
| 349 |
+
@{Name="WAN"; ScriptName="Download-WAN-Models.ps1"}
|
| 350 |
+
)
|
| 351 |
$scriptsSubFolder = Join-Path $InstallPath "scripts"
|
| 352 |
foreach ($pack in $modelPacks) {
|
| 353 |
$scriptPath = Join-Path $scriptsSubFolder $pack.ScriptName
|