File size: 4,333 Bytes
f2133c2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | ---
license: other
license_name: comfyui-gpl3-plus-custom-nodes
license_link: https://github.com/comfyanonymous/ComfyUI/blob/master/LICENSE
pretty_name: FlipPix ComfyUI Bundle (Linux / WSL)
tags:
- comfyui
- flippix
- text-to-image
- image-to-video
- bundle
viewer: false
---
# FlipPix β ready-to-run ComfyUI bundle (Linux / WSL)
A complete snapshot of a working [ComfyUI](https://github.com/comfyanonymous/ComfyUI)
install for [**FlipPix**](https://github.com/bongobongo2020/flippix): the embedded Python
environment (`python_embeded`) **plus every custom node already installed**. Restoring is
**extract-and-run** β no `pip`, no virtualenv, no hunting down ~115 custom-node packages.
This is the lowest-friction way to get a guaranteed-working ComfyUI for FlipPix.
| | |
|---|---|
| **File** | `flippix-comfyui.tar.gz` (~15 GB) |
| **Checksum** | `flippix-comfyui.tar.gz.sha256` |
| **Target** | Linux or **WSL** on Windows |
| **Requires** | NVIDIA GPU + recent driver (the bundle ships CUDA-built PyTorch) |
| **Models** | **NOT included** (add your own β see below) |
> Running plain **Windows without WSL**? This Linux bundle won't run natively there.
> A separate Windows bundle (`flippix-comfyui-windows.tar.gz`) is the native path β see the
> FlipPix repo.
---
## Quickest restore (one command)
On a Linux box or in **WSL**, this downloads, verifies the checksum, extracts, and prepares
the launcher β no need to grab anything by hand first:
```bash
curl -fsSL https://raw.githubusercontent.com/bongobongo2020/flippix/flippix-prompt-image/scripts/restore-comfyui.sh \
| bash -s -- --hf bongo2k22/flippix-comfyui
```
Then launch ComfyUI and point FlipPix at it:
```bash
cd ~/flippix-comfyui/ComfyUI-Easy-Install && ./run_nvidia_gpu.sh # serves on 0.0.0.0:8188
```
In FlipPix β **Settings**, set the ComfyUI Server URL to `http://127.0.0.1:8188` (or the
machine's IP if ComfyUI runs on another box). FlipPix users can also click
**Settings β Set up / Restore ComfyUI**, which runs exactly this for you.
---
## Manual restore
Prereqs: `tar`, and either the `hf` CLI or `curl`/`wget`.
```bash
# 1. download the bundle + checksum
hf download bongo2k22/flippix-comfyui flippix-comfyui.tar.gz --local-dir .
hf download bongo2k22/flippix-comfyui flippix-comfyui.tar.gz.sha256 --local-dir .
# (or: curl -L -C - -o flippix-comfyui.tar.gz \
# https://huggingface.co/bongo2k22/flippix-comfyui/resolve/main/flippix-comfyui.tar.gz)
# 2. verify integrity
sha256sum -c flippix-comfyui.tar.gz.sha256
# 3. extract + finalize (rebuilds nothing for python_embeded; just fixes paths)
bash restore-comfyui.sh flippix-comfyui.tar.gz ~/ComfyUI
cd ~/ComfyUI && ./run_nvidia_gpu.sh
```
`restore-comfyui.sh` lives in the [FlipPix repo](https://github.com/bongobongo2020/flippix/blob/flippix-prompt-image/scripts/restore-comfyui.sh).
For a private/gated copy of this repo, `export HF_TOKEN=hf_xxx` before downloading.
---
## Models
Model weights are **not** bundled (they'd add hundreds of GB). After restoring, either:
- point `ComfyUI/models` at an existing weights folder (symlink or `extra_model_paths.yaml`), or
- download the FlipPix model set via the manifest
[`scripts/flippix-models.txt`](https://github.com/bongobongo2020/flippix/blob/flippix-prompt-image/scripts/flippix-models.txt).
---
## What's inside
- `python_embeded/` β portable Python 3.12 with all dependencies for every custom node
- `ComfyUI/` β ComfyUI source + `custom_nodes/` (~115 packs) + your workflows/settings
- `run_nvidia_gpu.sh` and the other ComfyUI-Easy-Install launchers
- `.flippix-backup/manifest.txt` and `custom_nodes.txt` (provenance) + `requirements-freeze.txt`
Excluded: model weights, `output/`, `temp/`, `__pycache__`, and machine-specific run configs.
## Licensing
This bundle aggregates **ComfyUI** (GPL-3.0) and **many third-party custom nodes**, each under
its own license (see `.flippix-backup/custom_nodes.txt` for the list and source repos). It
contains **no model weights**. By using it you agree to the respective upstream licenses.
## Links
- FlipPix: https://github.com/bongobongo2020/flippix
- ComfyUI: https://github.com/comfyanonymous/ComfyUI
- Setup & backup/restore docs: https://github.com/bongobongo2020/flippix/blob/flippix-prompt-image/scripts/README.md
|