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
|
@@ -21,7 +21,8 @@ param(
|
|
| 21 |
#===========================================================================
|
| 22 |
# SECTION 1: SCRIPT CONFIGURATION & HELPER FUNCTIONS
|
| 23 |
#===========================================================================
|
| 24 |
-
|
|
|
|
| 25 |
# --- Force TLS 1.2 for all web requests ---
|
| 26 |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
| 27 |
|
|
|
|
| 21 |
#===========================================================================
|
| 22 |
# SECTION 1: SCRIPT CONFIGURATION & HELPER FUNCTIONS
|
| 23 |
#===========================================================================
|
| 24 |
+
# On retire les guillemets que le .bat pourrait ajouter à l'argument
|
| 25 |
+
$InstallPath = $InstallPath.Trim('"')
|
| 26 |
# --- Force TLS 1.2 for all web requests ---
|
| 27 |
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
|
| 28 |
|