Skip to content

Installation

Requirements

HtmlGraph requires Python 3.10 or higher.

Install from PyPI

The easiest way to install HtmlGraph is via pip:

pip install htmlgraph

Or using uv (recommended):

uv pip install htmlgraph

Install from Source

Clone the repository and install in development mode:

git clone https://github.com/Shakes-tzd/htmlgraph.git
cd htmlgraph
uv pip install -e .

Verify Installation

Check that HtmlGraph is installed correctly:

python -c "import htmlgraph; print(htmlgraph.__version__)"

Or using the CLI:

htmlgraph --version

Optional Dependencies

For development and testing:

# Install development dependencies
uv pip install -e ".[dev]"

# Install testing dependencies
uv pip install -e ".[test]"

# Install documentation dependencies
uv pip install -e ".[docs]"

Agent Integration

Claude Code Plugin

# Install the HtmlGraph plugin for Claude Code
claude plugin install htmlgraph

# Or from local marketplace
claude plugin marketplace add local-marketplace
claude plugin install htmlgraph

Gemini CLI Extension

# Install the HtmlGraph extension for Gemini CLI
gemini extension install htmlgraph

Codex CLI Skill

# Install the HtmlGraph skill for Codex CLI
codex skill install htmlgraph

Next Steps