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
15 changes: 11 additions & 4 deletions development/core-concepts/dependencies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,19 @@ ComfyUI is a Python-based project. We build a standalone Python environment to r

You can view ComfyUI's current dependencies in the [requirements.txt](https://github.com/comfyanonymous/ComfyUI/blob/master/requirements.txt) file:

{/* Note: These are the requirements at the time of writing, not necessarily the most recently updated version. Check the GitHub link above for the latest. */}

```text
comfyui-frontend-package==1.14.5
comfyui-frontend-package==1.32.9
comfyui-workflow-templates==0.7.25
comfyui-embedded-docs==0.3.1
torch
torchsde
torchvision
torchaudio
numpy>=1.25.0
einops
transformers>=4.28.1
transformers>=4.50.3
tokenizers>=0.13.3
sentencepiece
safetensors>=0.4.2
Expand All @@ -57,12 +61,15 @@ Pillow
scipy
tqdm
psutil
alembic
SQLAlchemy
av>=14.2.0

#non essential dependencies:
kornia>=0.7.1
spandrel
soundfile
av
pydantic~=2.0
pydantic-settings~=2.0
```

As ComfyUI evolves, we may adjust dependencies accordingly, such as adding new dependencies or removing ones that are no longer needed.
Expand Down
15 changes: 11 additions & 4 deletions zh-CN/development/core-concepts/dependencies.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,19 @@ ComfyUI 是一个基于 Python 的项目,我们构建了一个独立的 Python

你可以在 ComfyUI 的 [requirements.txt](https://github.com/comfyanonymous/ComfyUI/blob/master/requirements.txt) 文件中查看 ComfyUI 当前的依赖

{/* 注意:这些是撰写本文时的依赖版本,不一定是最新版本。请查看上方的 GitHub 链接获取最新信息。 */}

```text
comfyui-frontend-package==1.14.5
comfyui-frontend-package==1.32.9
comfyui-workflow-templates==0.7.25
comfyui-embedded-docs==0.3.1
torch
torchsde
torchvision
torchaudio
numpy>=1.25.0
einops
transformers>=4.28.1
transformers>=4.50.3
tokenizers>=0.13.3
sentencepiece
safetensors>=0.4.2
Expand All @@ -53,12 +57,15 @@ Pillow
scipy
tqdm
psutil
alembic
SQLAlchemy
av>=14.2.0

#non essential dependencies:
kornia>=0.7.1
spandrel
soundfile
av
pydantic~=2.0
pydantic-settings~=2.0
```

随着 ComfyUI 的发展,我们可能也会调整相应的依赖,比如添加新的依赖,或者删除一些不再需要的依赖。
Expand Down