Install the AnyCap CLI
Recommended binary install
Section titled “Recommended binary install”The install script selects the correct binary for macOS, Linux, or Windows through Git Bash:
curl -fsSL https://anycap.ai/install.sh | shThe default non-root location is ~/.local/bin/anycap. The installer updates your shell profile when needed.
npm install
Section titled “npm install”If your environment already standardizes on Node.js:
npm install -g @anycap/cliBinary installation is usually faster to start and does not require a Node.js runtime.
GitHub Releases
Section titled “GitHub Releases”Download a platform binary from AnyCap Releases, place it on PATH, and make it executable on Unix-like systems.
Verify the installation
Section titled “Verify the installation”anycap --versionanycap statusUpdate
Section titled “Update”The CLI checks for updates automatically. To update immediately:
anycap updateFix anycap: command not found
Section titled “Fix anycap: command not found”A newly installed binary may exist before the current shell reloads its profile.
ls -la ~/.local/bin/anycapexport PATH="$HOME/.local/bin:$PATH"anycap statusIf that file does not exist, review the installer output for /usr/local/bin or a custom ANYCAP_INSTALL_DIR. If an older npm binary takes precedence, inspect the resolved path:
command -v anycapUse the intended full path or put its directory earlier on PATH.