Skip to content

Instantly share code, notes, and snippets.

@hgomez
Created January 12, 2026 17:46
Show Gist options
  • Select an option

  • Save hgomez/a06efb14734d005f81bdeae7c4cd7e08 to your computer and use it in GitHub Desktop.

Select an option

Save hgomez/a06efb14734d005f81bdeae7c4cd7e08 to your computer and use it in GitHub Desktop.
Install Arduino NRF support on Ubuntu 24.04

NRF s'attend à python dans le PATH, mais seul python3 est disponible

mkdir ~/bin
cd ~/bin
ln -s /usr/bin/python3 python

export PATH=$PATH:~/bin >>  ~//bashrc 

Arduino NRF s'attend à trouver adafruit-nrfutil, pas installable par pip, uilisons pipx

sudo apt update
sudo apt install pipx
pipx ensurepath

On quitte le terminal puis on relance

pipx install adafruit-nrfutil

On vérifie que c'est installé

# adafruit-nrfutil 
Usage: adafruit-nrfutil [OPTIONS] COMMAND [ARGS]...

Options:
  --verbose  Show verbose information
  --help     Show this message and exit.

Commands:
  dfu      This set of commands support Nordic DFU OTA package generation...
  keys     Generate keys for signing or generate public keys
  version  Displays nrf utility version.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment