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
|
@@ -335,7 +335,7 @@ Remove-Item $sageWheel -ErrorAction SilentlyContinue
|
|
| 335 |
|
| 336 |
# --- Étape 7: Téléchargement des Workflows et Settings ---
|
| 337 |
Write-Log "`nStep 7: Downloading Workflows & Settings..." -Color Yellow
|
| 338 |
-
$userDefaultPath = Join-Path $
|
| 339 |
$workflowPath = Join-Path $userDefaultPath "workflows"; New-Item -Path $workflowPath -ItemType Directory -Force | Out-Null
|
| 340 |
$workflowCloneDest = Join-Path $workflowPath "UmeAiRT-Workflow"
|
| 341 |
$settingsFilePath = Join-Path $userDefaultPath "comfy.settings.json"
|
|
|
|
| 335 |
|
| 336 |
# --- Étape 7: Téléchargement des Workflows et Settings ---
|
| 337 |
Write-Log "`nStep 7: Downloading Workflows & Settings..." -Color Yellow
|
| 338 |
+
$userDefaultPath = Join-Path $InstallPath "user\default"; New-Item -Path $userDefaultPath -ItemType Directory -Force | Out-Null
|
| 339 |
$workflowPath = Join-Path $userDefaultPath "workflows"; New-Item -Path $workflowPath -ItemType Directory -Force | Out-Null
|
| 340 |
$workflowCloneDest = Join-Path $workflowPath "UmeAiRT-Workflow"
|
| 341 |
$settingsFilePath = Join-Path $userDefaultPath "comfy.settings.json"
|