Skip to content

Installation

Hoard requires Python 3.11 or newer. Choose your preferred installation method below.

Installation Methods

Terminal window
pipx install hoard

pipx installs Hoard in an isolated environment while making the hoard command available globally. This is the recommended method.

If you don’t have pipx:

Terminal window
brew install pipx
pipx ensurepath

Verify Installation

After installation, verify Hoard is working:

Terminal window
hoard --version

You should see the version number displayed.

To enable semantic (vector) search, install the vectors extra:

Terminal window
pip install hoard[vectors]

This downloads the embedding model (~90MB) on first use. Vector search is optional — Hoard works great with just keyword (BM25) search.

Python Version Issues

If you see an error about Python version:

ERROR: Package 'hoard' requires a different Python: 3.9.6 not in '>=3.11'

Solutions:

  1. Use pipx — It manages Python versions automatically
  2. Install Python 3.11+:
    Terminal window
    brew install python@3.11
    python3.11 -m pip install hoard

Next Steps

Once installed, run the setup wizard:

Terminal window
hoard init

This will guide you through configuring your data sources and connecting AI tools.

Continue to Quick Start →