comfyui
This commit is contained in:
15
justfile
15
justfile
@@ -12,3 +12,18 @@ fmt:
|
||||
# Perform automated fixes
|
||||
fix:
|
||||
bc-fix
|
||||
|
||||
# Install ComfyUI
|
||||
setup:
|
||||
#!/usr/bin/env bash
|
||||
python -m venv venv-comfyui
|
||||
source venv-comfyui/bin/activate
|
||||
pip install torch torchvision torchaudio --extra-index-url https://download.pytorch.org/whl/cu128
|
||||
git clone git@github.com:comfyanonymous/ComfyUI.git
|
||||
pip install -r ComfyUI/requirements.txt
|
||||
|
||||
# Run ComfyUI
|
||||
run:
|
||||
#!/usr/bin/env bash
|
||||
source venv-comfyui/bin/activate
|
||||
python ComfyUI/main.py
|
||||
|
||||
Reference in New Issue
Block a user