ComfyUI 本地安装指导

一、软件安装

桌面版本官网:下载 安装

按上述教程安装完成后,模型文件默认在:C:\Users\Administrator\Documents\ComfyUI\models 目录下

1.模型安装自定义位置

一般自定义在应用安装目录下:

复制代码
ComfyUI安装根目录/resources/ComfyUI/models  #自己下载的模型文件放到该目录对应位置下即可

自动定模型配置文件位于:

复制代码
ComfyUI安装根目录/resources/ComfyUI/models/extra_model_paths.yaml

配置文件:

复制代码
# extra_model_paths.yaml 配置内容

comfyui:
     base_path: ComfyUI安装根目录/resources/ComfyUI
     # You can use is_default to mark that these folders should be listed first, and used as the default dirs for eg downloads
     #is_default: true
     checkpoints: models/checkpoints/
     text_encoders: |
          models/text_encoders/
          models/clip/  # legacy location still supported
     clip_vision: models/clip_vision/
     configs: models/configs/
     controlnet: models/controlnet/
     diffusion_models: |
                  models/diffusion_models
                  models/unet
     embeddings: models/embeddings/
     loras: models/loras/
     upscale_models: models/upscale_models/
     vae: models/vae/
     audio_encoders: models/audio_encoders/
     model_patches: models/model_patches/
     custom_nodes: ComfyUI安装根目录/resources/ComfyUI/custom_nodes

2.工作流存放位置

复制代码
C:\Users\Administrator\Documents\ComfyUI\user\default\workflows
相关推荐
FreakStudio1 小时前
W55MH32L-EVB 上手测评:硬件 TCP/IP 加持的以太网单片机,MicroPython 零门槛开发
python·单片机·嵌入式·大学生·面向对象·并行计算·电子diy·电子计算机
用户0332126663673 小时前
使用 Python 从零创建 Word 文档
python
Csvn7 小时前
Python 两大经典坑点 —— 可变默认参数 & 闭包延迟绑定
后端·python
曲幽8 小时前
别再用网页翻译看源码了!你的私人翻译神器LibreTranslate,部署避坑指南来了
python·docker·web·pot·translate·libretranslate·arogstranslate
用户5569188175310 小时前
#从脚本到独立程序:Python + Playwright 批量抓取的完整踩坑记录
python·自动化运维
兵慌码乱1 天前
基于 MediaPipe 与 PySide2 的手势交互音乐控制系统实现:轻量化视觉交互全流程解析
python·opencv·计算机视觉·人机交互·手势识别·mediapipe·pyside2
luckdewei1 天前
FastAPI 资产管理系统实战:复杂 ORM 关联、Alembic 迁移与 N+1 查询优化
python
aqi001 天前
15天学会AI应用开发(八)使用向量数据库实现RAG功能
人工智能·python·大模型·ai编程·ai应用
Csvn1 天前
`functools.lru_cache` —— 一行代码搞定缓存加速
后端·python