Installation¶
There are several ways to install kindplane on your system.
Quick Install (Recommended)¶
The easiest way to install kindplane is using the install script:
This script will:
- Detect your operating system and architecture
- Download the appropriate binary
- Install it to
/usr/local/bin(or~/.local/binif no sudo access) - Verify the installation
Install a Specific Version¶
curl -fsSL https://raw.githubusercontent.com/kanzifucius/kindplane/main/install.sh | KINDPLANE_VERSION=v0.1.0 bash
Custom Installation Directory¶
curl -fsSL https://raw.githubusercontent.com/kanzifucius/kindplane/main/install.sh | KINDPLANE_INSTALL_DIR=/opt/bin bash
Download Binary¶
Download the latest release directly from the releases page.
Build from Source¶
If you prefer to build from source:
# Clone the repository
git clone https://github.com/kanzifucius/kindplane.git
cd kindplane
# Build using Go
go build -o bin/kindplane ./cmd/kindplane
# Or use Task (if installed)
task build
# Move to PATH
sudo mv bin/kindplane /usr/local/bin/
Requirements for Building¶
- Go 1.25 or later
- Git
Verify Installation¶
After installation, verify kindplane is working:
You should see the help output with available commands.
Updating¶
To update kindplane, simply run the install script again:
Uninstalling¶
To remove kindplane:
Or if installed to user directory: