Skip to content

Install via curl

The quickest way to install Bivvy on macOS or Linux.

Usage

Terminal window
curl -fsSL https://bivvy.dev/install | sh

What the Script Does

  1. Detects your OS and CPU architecture
  2. Downloads the matching binary from GitHub Releases
  3. Installs to ~/.local/bin (or your custom directory)
  4. Verifies the installation

Supported Platforms

OSArchitecture
macOSx64 (Intel), arm64 (Apple Silicon)
Linuxx64, arm64
Windows (WSL)x64

Environment Variables

VariableDefaultDescription
BIVVY_VERSIONlatestVersion to install (e.g., v1.0.0)
BIVVY_INSTALL_DIR~/.local/binInstallation directory

Examples

Install latest:

Terminal window
curl -fsSL https://bivvy.dev/install | sh

Install specific version:

Terminal window
BIVVY_VERSION=v1.0.0 curl -fsSL https://bivvy.dev/install | sh

Install to custom directory:

Terminal window
BIVVY_INSTALL_DIR=/usr/local/bin curl -fsSL https://bivvy.dev/install | sh

PATH Setup

If ~/.local/bin is not in your PATH, the script will tell you. Add this to your shell profile (~/.bashrc, ~/.zshrc, etc.):

Terminal window
export PATH="$PATH:$HOME/.local/bin"

Uninstalling

Terminal window
rm ~/.local/bin/bivvy

Troubleshooting

“Unsupported operating system” or “Unsupported architecture” : Your platform is not supported. See Supported Platforms.

“Could not find release for platform” : The version you requested may not exist. Check GitHub Releases.

Permission denied : You may need to create the install directory first: mkdir -p ~/.local/bin