comfy-env Setup Instructions
============================

All dependencies go through pixi (conda + pip unified).
GPU is auto-detected to select the right CUDA version.

QUICK START
-----------
1. pip install comfy-env
2. comfy-env init
3. Edit comfy-env-root.toml
4. comfy-env install

CONFIG FORMAT
-------------
[cuda]
packages = ["nvdiffrast", "pytorch3d"]

[apt]
packages = ["libgl1-mesa-glx"]

[dependencies]
cgal = "*"

[pypi-dependencies]
trimesh = { version = "*", extras = ["easy"] }

[node_reqs]
SomeNode = "owner/repo"

USAGE IN install.py
-------------------
from comfy_env import install
install()  # That's it!

For isolated nodes in __init__.py:
from comfy_env import register_nodes
NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS = register_nodes()

CLI COMMANDS
------------
comfy-env init           Create comfy-env-root.toml template
comfy-env install        Install all dependencies
comfy-env info           Show detected GPU and CUDA version
comfy-env doctor         Verify packages

For more: https://github.com/PozzettiAndrea/comfy-env
