Add --upgrade to pip installs in setup script
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Ensures packages are updated if already present on vast.ai instances. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -47,11 +47,11 @@ source venv/bin/activate
|
||||
|
||||
# Install PyTorch with CUDA
|
||||
log "Installing PyTorch..."
|
||||
pip install --quiet torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
|
||||
pip install --quiet --upgrade torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
|
||||
|
||||
# Install ComfyUI requirements
|
||||
log "Installing ComfyUI requirements..."
|
||||
pip install --quiet -r requirements.txt
|
||||
pip install --quiet --upgrade -r requirements.txt
|
||||
|
||||
# ── Custom Node Requirements ─────────────────────────────────
|
||||
log "Installing custom node requirements..."
|
||||
@@ -59,7 +59,7 @@ for req in custom_nodes/*/requirements.txt; do
|
||||
[ -f "$req" ] || continue
|
||||
node_name="$(basename "$(dirname "$req")")"
|
||||
log " $node_name"
|
||||
pip install --quiet -r "$req" 2>/dev/null || err " Failed some deps in $node_name (may be OK)"
|
||||
pip install --quiet --upgrade -r "$req" 2>/dev/null || err " Failed some deps in $node_name (may be OK)"
|
||||
done
|
||||
|
||||
# ── Download Models ───────────────────────────────────────────
|
||||
|
||||
Reference in New Issue
Block a user