Skip to content

Installation

bsevern edited this page Mar 19, 2026 · 1 revision

Installation

Basic Install

pip install goldenmatch

This installs the core tool with file-based deduplication and matching.

Optional Extras

GoldenMatch has optional dependency groups for additional features:

# Embedding-based semantic matching (sentence-transformers + FAISS)
pip install goldenmatch[embeddings]

# LLM-powered accuracy boost (Claude/GPT-4 for pair labeling)
pip install goldenmatch[llm]

# Postgres database integration
pip install goldenmatch[postgres]

# Everything
pip install goldenmatch[embeddings,llm,postgres]

Development Install

git clone https://github.com/benzsevern/goldenmatch.git
cd goldenmatch
pip install -e ".[dev,embeddings,llm,postgres]"

Requirements

  • Python 3.11+
  • Core dependencies: Polars, RapidFuzz, Typer, Textual, PyYAML, Pydantic, jellyfish, numpy, openpyxl

Verify Installation

goldenmatch --help

GoldenMatch

PyPI npm

🟡 Golden Suite (Monorepo)

Suite Packages

Getting Started

Core Concepts

AI Integration

Advanced

Reference


pip install goldenmatch
npm install goldenmatch

Clone this wiki locally