Installation | probe-rs (original) (raw)

Using install scripts

Linux, macOS

Terminal window


curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh

Windows

Terminal window


irm https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.ps1 | iex

From package managers

homebrew

Terminal window


brew tap probe-rs/probe-rs

brew install probe-rs

cargo binstall

Terminal window


cargo binstall probe-rs-tools

Installing from source (cargo install)

Prerequisites

To build probe-rs from source, you will need a working Rust toolchain. The easiest way is to follow the rustup installation instructions.

Debian-based Linux

On Debian and derived distros (e.g. Ubuntu), the following packages need to be installed:

Terminal window


sudo apt install -y pkg-config libudev-dev cmake git

RPM-based Linux (Fedora, CentOS)

Terminal window


dnf install libusbx-devel libudev-devel cmake git

macOS

No additional setup is required.

Windows

No additional setup is required.

Installation

cargo install will download, compile and install probe-rs, cargo-flash and cargo-embed for you.

You have multiple options, the two most interesting are:

See the Cargo book for details.

Shell completion

You likely want to install shell completion support along with the probe-rs binaries. Just run:

Terminal window


probe-rs complete install

If your shell is not supported out of the box, please follow the instructions given by this command.