-
基于 CUDA 12.4 的 PyTorch + xFormers 稳定版
-
Python dev (3.12)
-
GCC C++ (13)
-
OpenCV-devel
-
FFmpeg 与 x264、x265 编码器
-
CMake, Ninja 等编译工具
-
Vim, Fish, fd 等 CLI 工具
-
PyPI 使用清华源:
-
HuggingFace 使用:
-
GitHub 使用:
-
openSUSE 与 PackMan 使用清华源:
-
dhub.kubesre.xyz
使用 Docker
mkdir -p storage
docker run -it --rm \
--name comfyui-mega \
--gpus all \
-p 8188:8188 \
-v "$(pwd)"/storage:/root \
-e CLI_ARGS="--preview-method taesd" \
-e PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" \
-e HF_ENDPOINT="https://hf-mirror.com" \
dhub.kubesre.xyz/yanwk/comfyui-boot:cu124-cn
使用 Podman
mkdir -p storage
podman run -it --rm \
--name comfyui-mega \
--device nvidia.com/gpu=all \
--security-opt label=disable \
--security-opt seccomp=unconfined \
-p 8188:8188 \
-v "$(pwd)"/storage:/root \
-e CLI_ARGS="--preview-method taesd" \
-e PIP_INDEX_URL="https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple" \
-e HF_ENDPOINT="https://hf-mirror.com" \
dhub.kubesre.xyz/yanwk/comfyui-boot:cu124-cn
个人推荐使用一次性容器 (--rm
) 来保持环境整洁、配置清晰。