mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-11 22:12:33 +08:00
13 lines
239 B
Bash
Executable File
13 lines
239 B
Bash
Executable File
#!/bin/bash
|
|
cd ./custom_nodes/comfy_controlnet_preprocessors && python3.9 install.py && cd ../ &
|
|
|
|
|
|
# Run the first Python script
|
|
python3.9 main.py &
|
|
|
|
# Wait for 20 seconds
|
|
sleep 20
|
|
|
|
# Run the second Python script
|
|
python3.9 comfy_runpod.py
|