Installation
How to install probe-rs.
Using install scripts
Linux, macOS
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.sh | sh
Windows
irm https://github.com/probe-rs/probe-rs/releases/latest/download/probe-rs-tools-installer.ps1 | iex
From package managers
homebrew
brew tap probe-rs/probe-rs
brew install probe-rs
cargo binstall
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:
sudo apt install -y pkg-config libudev-dev cmake git
RPM-based Linux (Fedora, CentOS)
dnf install libusbx-devel libudev-devel cmake git
macOS
No additional setup is required.
Windows
Download and install cmake
. Make sure it's added to your $PATH
.
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:
- To install the latest release, run
cargo install probe-rs-tools --locked
- To try the latest development version (a.k.a the
master
branch) with experimental and unreleased changes, runcargo install probe-rs-tools --git https://github.com/probe-rs/probe-rs --locked
See the Cargo book for details.
Shell completion
You likely want to install shell completion support along with the probe-rs binaries. Just run:
probe-rs complete install
If your shell is not supported out of the box, please follow the instructions given by this command.