Install
Prebuilt binary (recommended)
Section titled “Prebuilt binary (recommended)”The installer detects your platform and verifies the download’s SHA-256:
curl -fsSL https://raw.githubusercontent.com/octofhir/banshee/main/install.sh | shIt installs to ~/.local/bin by default; override with BANSHEE_INSTALL_DIR.
Windows users can download the .zip from the
releases page.
With a Rust toolchain
Section titled “With a Rust toolchain”cargo binstall banshee # fetch the prebuilt release archivecargo install banshee # or build from source via crates.ioFrom source
Section titled “From source”git clone https://github.com/octofhir/bansheecd bansheecargo build --release -p banshee # parser, formatter, linter, LSPcargo build --release -p banshee --features db # + live schema introspectionThe binary is target/release/banshee. The db feature pulls in sqlx/tokio;
leave it off and the binary stays async-free, using a cached schema if present.