Install via curl
The quickest way to install Bivvy on macOS or Linux.
Usage
curl -fsSL https://bivvy.dev/install | shWhat the Script Does
- Detects your OS and CPU architecture
- Downloads the matching binary from GitHub Releases
- Installs to
~/.local/bin(or your custom directory) - Verifies the installation
Supported Platforms
| OS | Architecture |
|---|---|
| macOS | x64 (Intel), arm64 (Apple Silicon) |
| Linux | x64, arm64 |
| Windows (WSL) | x64 |
Environment Variables
| Variable | Default | Description |
|---|---|---|
BIVVY_VERSION | latest | Version to install (e.g., v1.0.0) |
BIVVY_INSTALL_DIR | ~/.local/bin | Installation directory |
Examples
Install latest:
curl -fsSL https://bivvy.dev/install | shInstall specific version:
BIVVY_VERSION=v1.0.0 curl -fsSL https://bivvy.dev/install | shInstall to custom directory:
BIVVY_INSTALL_DIR=/usr/local/bin curl -fsSL https://bivvy.dev/install | shPATH Setup
If ~/.local/bin is not in your PATH, the script will tell you. Add this
to your shell profile (~/.bashrc, ~/.zshrc, etc.):
export PATH="$PATH:$HOME/.local/bin"Uninstalling
rm ~/.local/bin/bivvyTroubleshooting
“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