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 UmeAiRT-Install-ComfyUI.bat
Browse files
UmeAiRT-Install-ComfyUI.bat
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
@echo off
|
| 2 |
setlocal
|
| 3 |
-
|
|
|
|
| 4 |
:: ============================================================================
|
| 5 |
:: Section 1: Set Installation Path (Modified)
|
| 6 |
:: ============================================================================
|
|
@@ -46,7 +47,7 @@ pause > nul
|
|
| 46 |
|
| 47 |
set "ScriptsFolder=%InstallPath%\scripts"
|
| 48 |
set "BootstrapScript=%ScriptsFolder%\Bootstrap-Downloader.ps1"
|
| 49 |
-
set "BootstrapUrl=https://github.com/UmeAiRT/ComfyUI-Auto_installer/raw/
|
| 50 |
|
| 51 |
:: Create scripts folder if it doesn't exist
|
| 52 |
if not exist "%ScriptsFolder%" (
|
|
|
|
| 1 |
@echo off
|
| 2 |
setlocal
|
| 3 |
+
set "PYTHONPATH="
|
| 4 |
+
set "PYTHONNOUSERSITE=1"
|
| 5 |
:: ============================================================================
|
| 6 |
:: Section 1: Set Installation Path (Modified)
|
| 7 |
:: ============================================================================
|
|
|
|
| 47 |
|
| 48 |
set "ScriptsFolder=%InstallPath%\scripts"
|
| 49 |
set "BootstrapScript=%ScriptsFolder%\Bootstrap-Downloader.ps1"
|
| 50 |
+
set "BootstrapUrl=https://github.com/UmeAiRT/ComfyUI-Auto_installer/raw/main/scripts/Bootstrap-Downloader.ps1"
|
| 51 |
|
| 52 |
:: Create scripts folder if it doesn't exist
|
| 53 |
if not exist "%ScriptsFolder%" (
|