Skip to content

Installation

pip install graphfinder

This installs prebuilt wheels (no Rust toolchain needed). numpy and matplotlib come as dependencies. For GIF export and nicer general-graph layouts:

pip install "graphfinder[viz]"   # pillow + networkx

From source

Requires Rust and Python ≥ 3.9.

git clone https://github.com/graphfinder/graphfinder.github.io
cd graphfinder
python -m venv .venv && source .venv/bin/activate
pip install maturin
maturin develop --release        # builds the Rust core and installs the package
python examples/quickstart.py

Rust crate

# Cargo.toml
[dependencies]
graphfinder-core = "0.2"
cargo add graphfinder-core