Skip to content
Merged
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
16 changes: 11 additions & 5 deletions installation/update_comfyui.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,16 @@ ComfyUI updates primarily consist of two components:
comfyui-frontend-package # ComfyUI frontend functionality
comfyui-workflow-templates # ComfyUI workflow templates
comfyui-embedded-docs # ComfyUI node help documentation
comfy-kitchen # ComfyUI core utilities
comfy-aimdo # ComfyUI core utilities
```

These three core dependencies are maintained in separate repositories:
These core dependencies are maintained in separate repositories:
- [ComfyUI_frontend](https://github.com/Comfy-Org/ComfyUI_frontend/) - Frontend interface and interactive features
- [workflow_templates](https://github.com/Comfy-Org/workflow_templates) - Pre-built workflow templates
- [comfyui-embedded-docs](https://github.com/Comfy-Org/embedded-docs) - Node help documentation
- [comfy-kitchen](https://github.com/Comfy-Org/comfy-kitchen) - Fast kernel library for Diffusion inference with multiple compute backends
- [comfy-aimdo](https://github.com/Comfy-Org/comfy-aimdo) - AI Model Demand Offloading Allocator

It's important to understand the difference between development (nightly) and stable (release) versions:
- **Development version (nightly)**: Latest commit code, giving you access to the newest features, but may contain potential issues
Expand Down Expand Up @@ -213,11 +217,13 @@ If core dependency updates fail, follow these troubleshooting steps:
<Step title="Install Core Packages Individually">
If batch installation fails, try installing packages individually. **First check version requirements in `ComfyUI/requirements.txt`**:

**Then install according to specified versions:**
**Then install according to specified versions (use version numbers from your requirements.txt):**
```bash
pip install comfyui-frontend-package==1.17.11
pip install comfyui-workflow-templates==1.0.0
pip install comfyui-embedded-docs==1.0.0
pip install comfyui-frontend-package==<version>
pip install comfyui-workflow-templates==<version>
pip install comfyui-embedded-docs==<version>
pip install comfy-kitchen==<version>
pip install comfy-aimdo==<version>
```
<Warning>
It's recommended to use the exact version numbers specified in `ComfyUI/requirements.txt`. Don't upgrade to the latest versions independently, as this may cause compatibility issues.
Expand Down
16 changes: 11 additions & 5 deletions zh-CN/installation/update_comfyui.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,16 @@ git checkout master
comfyui-frontend-package # ComfyUI 前端功能
comfyui-workflow-templates # ComfyUI 工作流模板
comfyui-embedded-docs # ComfyUI 节点的帮助文档
comfy-kitchen # ComfyUI 核心工具库
comfy-aimdo # ComfyUI 核心工具库
```

目前这三个核心依赖项目分别在不同的仓库中维护
目前这些核心依赖项目分别在不同的仓库中维护
- [ComfyUI_frontend](https://github.com/Comfy-Org/ComfyUI_frontend/) - 前端界面和交互功能
- [workflow_templates](https://github.com/Comfy-Org/workflow_templates) - 预置工作流模板
- [comfyui-embedded-docs](https://github.com/Comfy-Org/embedded-docs) - 节点帮助文档
- [comfy-kitchen](https://github.com/Comfy-Org/comfy-kitchen) - 支持多种计算后端的 Diffusion 推理快速内核库
- [comfy-aimdo](https://github.com/Comfy-Org/comfy-aimdo) - AI 模型按需卸载分配器

另外很有必要说明的一点是,开发版本(nightly) 和 稳定版本(release) 的区别:
- **开发版本(nightly)**:最新 commit 的代码,你可以体验到我们最新提供的一些功能,但是也有可能存在一些潜在的问题
Expand Down Expand Up @@ -213,11 +217,13 @@ comfyui-embedded-docs # ComfyUI 节点的帮助文档
<Step title="逐个安装核心包">
如果批量安装失败,可尝试逐个安装。**首先查看 `ComfyUI/requirements.txt` 中的版本要求**:

**然后按照指定版本安装:**
**然后按照指定版本安装(使用 requirements.txt 中的版本号):**
```bash
pip install comfyui-frontend-package==1.17.11
pip install comfyui-workflow-templates==1.0.0
pip install comfyui-embedded-docs==1.0.0
pip install comfyui-frontend-package==<version>
pip install comfyui-workflow-templates==<version>
pip install comfyui-embedded-docs==<version>
pip install comfy-kitchen==<version>
pip install comfy-aimdo==<version>
```
<Warning>
建议使用 `ComfyUI/requirements.txt` 中指定的确切版本号,不要自行升级到最新版本,这可能导致兼容性问题。
Expand Down