Compare commits

...

3 Commits

Author SHA1 Message Date
Sai Sasank Kurnella
e5d4377ab1
Merge c71e3f8db8 into 7ee77ff038 2026-01-26 14:39:07 +01:00
comfyanonymous
7ee77ff038
Add name to LoraLoaderModelOnly. (#12078)
Some checks are pending
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Waiting to run
Execution Tests / test (macos-latest) (push) Waiting to run
Execution Tests / test (ubuntu-latest) (push) Waiting to run
Execution Tests / test (windows-latest) (push) Waiting to run
Test server launches without errors / test (push) Waiting to run
Unit Tests / test (macos-latest) (push) Waiting to run
Unit Tests / test (ubuntu-latest) (push) Waiting to run
Unit Tests / test (windows-2022) (push) Waiting to run
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Waiting to run
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Waiting to run
2026-01-25 21:01:55 -05:00
Sai Sasank Kurnella
c71e3f8db8 docs: Add Linux Python build requirements for bzip2 and lzma
Fixes #3219

Documents that Linux users building Python from source need to install
libbz2-dev and liblzma-dev (Debian/Ubuntu) or bzip2-devel and xz-devel
(RHEL/Fedora/CentOS) before building Python to ensure the _bz2 and
_lzma standard library modules are available.

This helps users who install Python via pyenv, asdf, or compile from
source avoid cryptic import errors when running ComfyUI.
2026-01-19 22:26:37 -05:00
2 changed files with 18 additions and 1 deletions

View File

@ -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

View File

@ -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)",