mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-07 12:02:37 +08:00
Compare commits
3 Commits
9d8b2edfcc
...
e5d4377ab1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e5d4377ab1 | ||
|
|
7ee77ff038 | ||
|
|
c71e3f8db8 |
16
README.md
16
README.md
@ -288,6 +288,22 @@ Install the dependencies by opening your terminal inside the ComfyUI folder and:
|
||||
|
||||
After this you should have everything installed and can proceed to running ComfyUI.
|
||||
|
||||
#### Linux: Python Build Requirements
|
||||
|
||||
If you are building Python from source on Linux (e.g., using pyenv, asdf, or compiling manually), ensure the following development libraries are installed **before** building Python. These are required for the `_bz2` and `_lzma` standard library modules:
|
||||
|
||||
**Debian/Ubuntu:**
|
||||
```bash
|
||||
sudo apt install libbz2-dev liblzma-dev
|
||||
```
|
||||
|
||||
**RHEL/Fedora/CentOS:**
|
||||
```bash
|
||||
sudo dnf install bzip2-devel xz-devel
|
||||
```
|
||||
|
||||
After installing these packages, rebuild Python to include the `_bz2` and `_lzma` modules.
|
||||
|
||||
### Others:
|
||||
|
||||
#### Apple Mac silicon
|
||||
|
||||
3
nodes.py
3
nodes.py
@ -2105,7 +2105,8 @@ NODE_DISPLAY_NAME_MAPPINGS = {
|
||||
"CheckpointLoader": "Load Checkpoint With Config (DEPRECATED)",
|
||||
"CheckpointLoaderSimple": "Load Checkpoint",
|
||||
"VAELoader": "Load VAE",
|
||||
"LoraLoader": "Load LoRA",
|
||||
"LoraLoader": "Load LoRA (Model and CLIP)",
|
||||
"LoraLoaderModelOnly": "Load LoRA",
|
||||
"CLIPLoader": "Load CLIP",
|
||||
"ControlNetLoader": "Load ControlNet Model",
|
||||
"DiffControlNetLoader": "Load ControlNet Model (diff)",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user