Skip to content

Latest commit

 

History

History
80 lines (52 loc) · 1.55 KB

File metadata and controls

80 lines (52 loc) · 1.55 KB

Installation

greybeard is available on PyPI and can be installed with any Python package manager.

Requirements

Install from PyPI

Using uv (recommended)

uv is a fast Python package manager.

uv pip install greybeard

Using pip

pip install greybeard

Optional extras

Install additional backends:

# With uv
uv pip install "greybeard[anthropic]"  # Claude/Anthropic support
uv pip install "greybeard[all]"        # Everything

# With pip
pip install "greybeard[anthropic]"
pip install "greybeard[all]"

Development Installation

If you want to contribute or modify greybeard:

git clone https://github.com/btotharye/greybeard.git
cd greybeard

# Using uv (recommended)
uv pip install -e ".[dev]"

# Using pip
pip install -e ".[dev]"

# Or use the Makefile
make install-dev

For detailed contribution guidelines, testing, and development workflows, see the Contributing Guide.

Verify installation

After installing, verify greybeard is available:

greybeard --version
greybeard packs

!!! note "Virtual environments" If you installed into a virtual environment (created by uv or manually), make sure to activate it first, or use uv run greybeard instead.

Next steps

Run the setup wizard to configure your LLM backend:

greybeard init

Or jump straight to the Quick Start guide.