You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: development/core-concepts/dependencies.mdx
+11-4Lines changed: 11 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,15 +38,19 @@ ComfyUI is a Python-based project. We build a standalone Python environment to r
38
38
39
39
You can view ComfyUI's current dependencies in the [requirements.txt](https://github.com/comfyanonymous/ComfyUI/blob/master/requirements.txt) file:
40
40
41
+
{/* 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. */}
42
+
41
43
```text
42
-
comfyui-frontend-package==1.14.5
44
+
comfyui-frontend-package==1.32.9
45
+
comfyui-workflow-templates==0.7.25
46
+
comfyui-embedded-docs==0.3.1
43
47
torch
44
48
torchsde
45
49
torchvision
46
50
torchaudio
47
51
numpy>=1.25.0
48
52
einops
49
-
transformers>=4.28.1
53
+
transformers>=4.50.3
50
54
tokenizers>=0.13.3
51
55
sentencepiece
52
56
safetensors>=0.4.2
@@ -57,12 +61,15 @@ Pillow
57
61
scipy
58
62
tqdm
59
63
psutil
64
+
alembic
65
+
SQLAlchemy
66
+
av>=14.2.0
60
67
61
68
#non essential dependencies:
62
69
kornia>=0.7.1
63
70
spandrel
64
-
soundfile
65
-
av
71
+
pydantic~=2.0
72
+
pydantic-settings~=2.0
66
73
```
67
74
68
75
As ComfyUI evolves, we may adjust dependencies accordingly, such as adding new dependencies or removing ones that are no longer needed.
0 commit comments