Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions start.5090.sh
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ if [ ! -d "$COMFYUI_DIR" ] || [ ! -d "$VENV_DIR" ]; then
python -m ensurepip --upgrade
python -m pip install --upgrade pip

# Update ComfyUI dependencies (frontend, etc.)
echo "Installing ComfyUI requirements..."
pip install -r "$COMFYUI_DIR/requirements.txt"

echo "Base packages (torch cu128, numpy, etc.) available from system site-packages"
echo "Installing custom node dependencies..."

Expand Down Expand Up @@ -219,6 +223,10 @@ else
# Just activate the existing venv
source $VENV_DIR/bin/activate

# Update ComfyUI dependencies on each start (ensures frontend stays current)
echo "Updating ComfyUI dependencies..."
pip install -q -r "$COMFYUI_DIR/requirements.txt"

echo "Checking for custom node dependencies..."

# Install dependencies for all custom nodes
Expand Down
8 changes: 8 additions & 0 deletions start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,10 @@ if [ ! -d "$COMFYUI_DIR" ] || [ ! -d "$VENV_DIR" ]; then
python -m ensurepip --upgrade
python -m pip install --upgrade pip

# Update ComfyUI dependencies (frontend, etc.)
echo "Installing ComfyUI requirements..."
pip install -r "$COMFYUI_DIR/requirements.txt"

echo "Base packages (torch, numpy, etc.) available from system site-packages"
echo "Installing custom node dependencies..."

Expand Down Expand Up @@ -219,6 +223,10 @@ else
# Just activate the existing venv
source $VENV_DIR/bin/activate

# Update ComfyUI dependencies on each start (ensures frontend stays current)
echo "Updating ComfyUI dependencies..."
pip install -q -r "$COMFYUI_DIR/requirements.txt"

echo "Checking for custom node dependencies..."

# Install dependencies for all custom nodes
Expand Down