Getting started on Ubuntu 25.04: see: Program Raspberry Pi Pico W with X.
Then ignore the other steps from the tutorial, as theese use the picozero package, which is broken with this error: github.com/raspberrypilearning/getting-started-with-the-pico/issues/57and uses picozero specific code. Rather, just use our examples from rpi-pico-w.
AttributeError: module 'pkgutil' has no attribute 'ImpImporter'. Did you mean: 'zipimporter'
This is a major design flaw, that the only easy default way is that you have to unplug, press bootsel, replug.
Tested on Ubuntu 25.04,
sudo apt install libusb-1.0-0-dev
git clone https://github.com/raspberrypi/pico-sdk
git clone https://github.com/raspberrypi/picotool
cd picotool
git checkout de8ae5ac334e1126993f72a5c67949712fd1e1a4
export PICO_SDK_PATH="$(pwd)/../pico-sdk"
mkdir build
cd build
cmake ..
cmake --build . -- -j"$(npro)" VERBOSE=1
build/picotool
so copy it somewhere in your PATH
like:cp picotool ~/bin
sudo ~/bin/picotool load -f build/zephyr/zephyr.uf2
No accessible RP2040 devices in BOOTSEL mode were found
pico_enable_stdio_usb(blink 1)
Never unplug your Raspberry Pi Pico again by deltocode
. Source. Articles by others on the same topic
There are currently no matching articles.