Skip to content

Latest commit

 

History

History
73 lines (47 loc) · 1.28 KB

File metadata and controls

73 lines (47 loc) · 1.28 KB

Installation

Minimal paths to a working agentfleet on your machine.


Recommended: npm global

npm install -g @buyan14/agentfleet@latest

Verify:

which agentfleet
agentfleet --help
python3 --version   # ≥ 3.11

What gets installed

  • JS shim on PATH (bin/agentfleet.js): invokes Python with PYTHONPATH set to the package root so agent_fleet loads from that install—not from arbitrary site-packages.

You still need a working python3 (or python) on PATH. Override if needed:

export AGENTFLEET_PYTHON=/opt/homebrew/bin/python3.11

From source (contributors)

git clone https://github.com/buyan-kh/agentfleet.git && cd agentfleet
PYTHONPATH=. python -m agent_fleet.cli --help

Optional editable install:

pip install -e .
agentfleet --help

Upgrade

npm install -g @buyan14/agentfleet@latest
# or
agentfleet upgrade

Uninstall

npm uninstall -g @buyan14/agentfleet

When doctor fails

Run agentfleet doctor inside your project repo after install. Typical fixes: install missing CLIs (claude, codex), fix Python version, grant terminal app permissions (Ghostty splits on macOS).

See README for full usage.