Skip to content

Installation

v0.1.9 Latest Release

The fastest way to install Aranet CLI is using pre-built binaries:

Terminal window
brew tap cameronrye/aranet
brew install aranet

Download binaries directly from GitHub Releases:

Install using Cargo (requires Rust toolchain):

Terminal window
cargo install aranet-cli

Alternatively, build from source for the latest development version:

  1. Clone the repository

    Terminal window
    git clone https://github.com/cameronrye/aranet.git
    cd aranet
  2. Build all crates

    Terminal window
    cargo build --release
  3. Run the CLI

    Terminal window
    ./target/release/aranet --help

No additional dependencies required. Bluetooth access will prompt for permission on first use.

To install the CLI to your Cargo bin directory:

Terminal window
cargo install --path crates/aranet-cli

This allows you to run aranet from anywhere:

Terminal window
aranet scan

Generate shell completions for your shell:

Terminal window
aranet completions bash > ~/.local/share/bash-completion/completions/aranet

Add aranet-core to your Cargo.toml:

[dependencies]
aranet-core = "0.1"

Check that everything is working:

Terminal window
# Show version
aranet --version
# Run BLE diagnostics
aranet doctor
# Scan for devices (requires Bluetooth)
aranet scan --timeout 5

Made with ❤️ by Cameron Rye