tito-PDF Documentation

Install

tito-pdf is a local CLI (no network, no LLM) that runs as a single Python script with a small toolchain.

The recommended installation method is the repo installer, which creates an isolated Python venv and installs a launcher (tito-pdf) into your PATH.

macOS / Linux (system-wide installer)

From the repo root:

sudo ./install/install.sh

What the installer does (high level):

Uninstall:

sudo ./install/uninstall.sh

Upgrade: Run sudo ./install/install.sh again. The installer removes the prior installation using the recorded manifest.

Windows (PowerShell installer)

From the repo root:

powershell -NoProfile -ExecutionPolicy Bypass -File .\install\install.ps1

Defaults:

Uninstall:

powershell -NoProfile -ExecutionPolicy Bypass -File .\install\uninstall.ps1

Notes:

Required system dependency

qpdf

qpdf is required for PDF conversion.

Install on macOS:

brew install qpdf

OCR dependency (only if you use OCR)

tesseract

OCR requires tesseract.

Install on macOS:

brew install tesseract

Verify the installed CLI

Always verify the installed binary (not the repo script):

command -v tito-pdf
tito-pdf --version
tito-pdf --help

For contributors: see Development for the “installed-binary-only” validation policy.