PATH, and hands you a working AI coding agent.
This page covers:
- Install with the one-line installer - the fastest path on macOS and Linux.
- Install with a package manager - npm, Homebrew, Scoop, and more.
- Verify the install, keep it updated, and uninstall.
Overview
The one-line installer detects your operating system and CPU architecture, pulls the matching build, and wires up your shell. If you already use a package manager, 100xprompt is published there too.System requirements
100xprompt ships prebuilt binaries. There is no runtime, compiler, or SDK to install first. The one-line installer needs only a couple of standard command-line utilities that ship with virtually every system.
| Requirement | Details |
|---|---|
| Operating system | macOS, Linux, or Windows |
| Architecture | 64-bit Intel/AMD (x64) or ARM (arm64 / Apple Silicon) |
| Terminal | Any modern terminal emulator |
| Utilities (curl install) | curl, plus unzip on macOS/Windows or tar on Linux |
| Disk | A few hundred MB for the binary and cached data |
On Intel Macs and older x64 CPUs without AVX2, the installer automatically selects a compatible baseline build. On Alpine and other musl-based Linux distributions, it selects the musl build. You do not need to choose - detection is automatic.
Install with the one-line installer
Suppose you’re on macOS or Linux and want the shortest path to a working agent. Use the one-line installer - it fetches the latest release and skips package-manager overhead.Run the installer
Paste this into your terminal:The installer downloads the build for your OS and architecture, places the
100xprompt binary under your home directory, and shows a progress bar.Let it update your PATH
The installer adds 100xprompt to your
PATH by editing your shell profile (your zsh, bash, or fish config). When it finishes, you see a welcome banner and a getting-started hint.Install a specific version
Install a specific version
Pass a version to the installer to pin an exact release:
Install without touching your shell config
Install without touching your shell config
If you manage your You will then need to add the install directory (
PATH yourself, skip the automatic profile edit:~/.100xprompt/bin) to your PATH manually.Install with a package manager
Suppose you’d rather manage 100xprompt alongside your other tools. Choose your platform and manager below.- npm
- bun
- pnpm
- yarn
- Homebrew (macOS / Linux)
- Scoop (Windows)
Verify the install
Confirm 100xprompt is on yourPATH and ready to go:
Check the version
PATH is picked up.If
100xprompt --version prints a version and the app launches, you are fully installed. Head to the quickstart to run your first task.Keep it updated
100xprompt updates itself, no matter how you installed it. It detects your original install method and upgrades in place.- Built-in upgrade
- npm
- bun
- pnpm
- Homebrew
Uninstall
The guided uninstaller removes the binary, yourPATH entry, and cached data - with a preview before anything is deleted.
Preview what will be removed
Run a dry run to see exactly which files and directories are in scope, without changing anything:
| Flag | What it does |
|---|---|
--dry-run | Show what would be removed without removing anything |
--keep-config | Preserve your configuration files |
--keep-data | Preserve session data and snapshots |
--force | Skip confirmation prompts |
If you installed through a package manager, the uninstaller runs that manager’s removal command for you (for example,
npm uninstall -g 100xprompt-cli or brew uninstall 100xprompt). You can always run those directly as well.Related
Quickstart
Run your first task and see 100xprompt work on real code in minutes.
How It Works
Understand the mental model behind 100xprompt: how it reads, plans, and edits.