8000 doc: add psutil requirement to Getting Started by Enoch247 · Pull Request #21399 · RIOT-OS/RIOT · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

doc: add psutil requirement to Getting Started #21399

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion doc/doxygen/src/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ developing for:
* wget or curl
* python3
* pyserial (linux distro package often named python3-serial or py3-serial)
* psutil (python3-psutil or py3-psutil)
* Doxygen for building the documentation

@note For each architecture a default tool for flashing and on-chip debugging is listed below - in
Expand All @@ -75,7 +76,8 @@ developing for:

For example, in Ubuntu the above tools can be installed with the following command:

sudo apt install git gcc-arm-none-eabi make gcc-multilib libstdc++-arm-none-eabi-newlib openocd gdb-multiarch doxygen wget unzip python3-serial
sudo apt install git gcc-arm-none-eabi make gcc-multilib libstdc++-arm-none-eabi-newlib\
openocd gdb-multiarch doxygen wget unzip python3-serial python3-psutil

@details Running `BOARD=<INSERT_TARGET_BOARD_HERE> make info-programmers-supported` in your
application folder lists the programmers supported by RIOT for the given board.
Expand Down
0