Building a drone with two Raspberry Pico 2 Zephyr RTOS.
We need to install and create a Python environment so as not to "pollute" our Linux environment.
$ sudo apt install -y python3-venv
$ python3 -m venv .venv
$ source .venv/bin/activate
(.venv)$ // you are in the python environment now
West is the meta tool used by Zephyr to group together a multitude of commands and tools
(.venv)$ pip install west
west init
west update
west build -p always -b rpi_pico2/rp2350a/m33 app