ComfyUI-embedded-docs is a Python package that provides offline documentation and help resources specifically for ComfyUI's core nodes. It bundles Markdown files and associated assets, making node-specific documentation accessible directly within the ComfyUI interface. The package maintains an active development status with regular updates, typically published to PyPI upon changes to its `pyproject.toml` on the main branch.
pip install comfyui-embedded-docsNo compatibility data collected yet for this library.
After installation, launch your ComfyUI instance. To view documentation for any core node, click on the node in your workflow, then click the 'node info' icon (often a '?' or 'i' symbol) in the selection toolbox. This will open a documentation page directly within ComfyUI, providing details about the node's function, inputs, and outputs.
Ensure you run a full update for your ComfyUI installation, not just a `git pull` of the main repository. This often involves updating core dependencies explicitly or using update scripts provided by ComfyUI.
For custom node issues, consult the custom node's specific GitHub repository or support channels. Disable custom nodes to isolate problems.
Use an 'editable' installation (`pip install -e /path/to/embedded-docs/`) for development. This allows changes in the source directory to be reflected in ComfyUI without reinstallation. Remember to restart or refresh ComfyUI after making changes.
Navigate to your ComfyUI's embedded Python directory (e.g., `ComfyUI/python_embeded`), open a terminal there, and install the package using: `./python.exe -m pip install comfyui-embedded-docs`.
Ensure you run a full update for your ComfyUI installation, including its core dependencies. This often involves using update scripts provided by ComfyUI or explicitly running `pip install --upgrade comfyui-embedded-docs` within ComfyUI's Python environment.
Use an editable installation by running `pip install -e /path/to/your/local/comfyui-embedded-docs/` from your terminal. After making changes to the source files, restart or refresh your ComfyUI instance.
No dependency data recorded yet.