Install Brane CLI
Install the Brane CLI
Section titled “Install the Brane CLI”The brane CLI is used to build, test, and publish packages, and to run workflows. Both developers and scientists use this tool.
Prerequisites
Section titled “Prerequisites”- Docker 20.10+ with BuildKit (see prerequisites)
- Language toolchain for your chosen language (Python, Rust, etc.)
Download the Binary
Section titled “Download the Binary”sudo wget -O /usr/local/bin/brane \ https://github.com/BraneFramework/brane/releases/latest/download/brane-linux-x86_64sudo chmod +x /usr/local/bin/branesudo wget -O /usr/local/bin/brane \ https://github.com/BraneFramework/brane/releases/latest/download/brane-darwin-x86_64sudo chmod +x /usr/local/bin/branesudo wget -O /usr/local/bin/brane \ https://github.com/BraneFramework/brane/releases/latest/download/brane-darwin-aarch64sudo chmod +x /usr/local/bin/braneVerify: brane version
Build from source
git clone https://github.com/BraneFramework/brane && cd branecargo xtask build brane-cliThe binary will be at target/release/brane. Requires Rust, GCC, and CMake.