Skip to content

Installation

Requirements

  • Python 3.10 or newer
  • pip or uv

Install from PyPI

pip install graphforge

Or using uv (recommended):

uv pip install graphforge

Install from Source

For development or to get the latest changes:

git clone https://github.com/DecisionNerd/graphforge.git
cd graphforge

# Using uv (recommended)
uv sync --all-extras

# Or using pip
pip install -e ".[dev]"

Verify Installation

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

Next Steps