You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
774 B
26 lines
774 B
# ComfyUI Launcher Requirements |
|
# Python dependencies for the GTK4 ComfyUI launcher |
|
|
|
# Core GTK bindings |
|
PyGObject>=3.42.0 |
|
|
|
# System monitoring (optional, fallback to system commands if not available) |
|
psutil>=5.9.0 |
|
|
|
# Note: Additional system dependencies required: |
|
# - GTK4 development libraries |
|
# - Cairo development libraries |
|
# - GObject Introspection development libraries |
|
# - pkg-config |
|
# - Python development headers |
|
# |
|
# Install system dependencies first: |
|
# |
|
# Fedora/RHEL/CentOS: |
|
# sudo dnf install cairo-devel gobject-introspection-devel gtk4-devel pkg-config python3-devel |
|
# |
|
# Debian/Ubuntu: |
|
# sudo apt install libcairo2-dev libgirepository1.0-dev libgtk-4-dev pkg-config python3-dev |
|
# |
|
# Arch Linux: |
|
# sudo pacman -S cairo gobject-introspection gtk4 pkgconf python
|
|
|