Extras and System Dependencies#
The base gptme install works on its own. Some features need optional
Python extras or system packages — install them only for the features you use.
Python extras#
Add extras in brackets when installing:
# Specific extras
pipx install "gptme[server,tui]"
uv tool install "gptme[browser]"
# Everything commonly needed (see below for what "all" covers)
pipx install "gptme[all]"
# With the one-line installer (default extras: browser)
curl -sSf https://gptme.ai/install.sh | sh -s -- --extras browser,tui
Extra |
What it enables |
Read more |
|---|---|---|
|
Web UI and REST API server ( |
|
|
Textual-based terminal UI ( |
|
|
Agent Client Protocol server for editors such as Zed |
|
|
Playwright for the browser tool (browser binaries are installed separately, see Browser binaries) |
|
|
|
|
|
matplotlib, pandas, and numpy for the Python tool |
|
|
No extra Python packages; for accessibility-first control of native
Linux apps, install |
|
|
|
|
|
Experimental Wasmtime backend for sandboxed Python ( |
|
|
OpenTelemetry instrumentation for tracing and metrics |
|
|
The |
Note
A few extras are only for development and evaluation: dspy (prompt
optimization), eval (the full Evals suite), swebench (the
SWE-bench lane only), and pyinstaller (Building Executables). The minimal
extra adds no packages; it marks installs that avoid native extensions
beyond pydantic-core (ARM, musl, Termux, Lambda).
Browser binaries#
The browser extra installs the Playwright library, but not the browsers it
drives. gptme tries to download them automatically; to do it yourself, use the
same Playwright version that gptme installed:
PW_VERSION=$(pipx runpip gptme show playwright | grep Version | cut -d' ' -f2)
pipx run playwright==$PW_VERSION install chromium-headless-shell
# or Firefox, for pages that block headless Chromium
pipx run playwright==$PW_VERSION install firefox
See Browser for engine options.
Installing from source#
To install the latest development version from git:
# Using pipx
pipx install "git+https://github.com/gptme/gptme.git"
# Using uv
uv tool install "git+https://github.com/gptme/gptme.git"
# With extras
pipx install "gptme[server,browser] @ git+https://github.com/gptme/gptme.git"
If you have cloned the repository locally and want an editable install (changes to code take effect immediately):
# Clone if you haven't already
git clone https://github.com/gptme/gptme.git
cd gptme
# Using pipx (editable)
pipx install -e .
# Using uv (editable)
uv tool install -e .
# Editable with extras
pipx install -e ".[server,browser]"
System packages#
These are picked up automatically when present on your PATH.
Package |
Used for |
Installation |
|---|---|---|
|
The tmux tool, for long-running and interactive commands |
|
|
The gh tool, for GitHub issues, PRs, and CI |
|
|
Linting shell commands before the shell tool runs them |
|
Playwright browsers |
The browser tool’s Playwright backend (requires the |
See Browser |
|
Text-only browser fallback when Playwright is not installed |
|
|
PDF text extraction when |
|
|
Clipboard support on Linux (Wayland or X11) |
|
|
Accessibility-first control of native Linux apps with the computer tool |
|