This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # 1. Define Paths (Standard for ai-dock images) | |
| COMFY_DIR="/opt/ComfyUI" | |
| MODELS_DIR="${COMFY_DIR}/models" | |
| CUSTOM_NODES="${COMFY_DIR}/custom_nodes" | |
| # 2. Install the Wan Wrapper Node (Crucial for Wan 2.2 support) | |
| # This node by Kiijai is the standard for running Wan in ComfyUI | |
| echo "Installing ComfyUI-WanVideoWrapper..." |