diff --git a/development/core-concepts/dependencies.mdx b/development/core-concepts/dependencies.mdx index bc6007a1..7db2c989 100644 --- a/development/core-concepts/dependencies.mdx +++ b/development/core-concepts/dependencies.mdx @@ -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 @@ -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. diff --git a/zh-CN/development/core-concepts/dependencies.mdx b/zh-CN/development/core-concepts/dependencies.mdx index f3da6f0e..d72a9f0c 100644 --- a/zh-CN/development/core-concepts/dependencies.mdx +++ b/zh-CN/development/core-concepts/dependencies.mdx @@ -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 @@ -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 的发展,我们可能也会调整相应的依赖,比如添加新的依赖,或者删除一些不再需要的依赖。