From 0717b94821877f21dc69838da46d91bf6ac29360 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Mon, 21 Aug 2023 11:03:59 +0200 Subject: [PATCH] docs: add command to install required software --- docs/source/tutorials/installation.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/source/tutorials/installation.md b/docs/source/tutorials/installation.md index 873ac344..3506bbdc 100644 --- a/docs/source/tutorials/installation.md +++ b/docs/source/tutorials/installation.md @@ -40,6 +40,12 @@ The requirements for either of these setups: - _Python 3_ interpreter (`>= 3.9`) - _Git_ - Essential toolchain to build software (`make`, `gcc`, ...) + +The following command will install the required software on Ubuntu +```shell +sudo apt-get install -y python3-dev git build-essential +``` + :::{note} The userspace installation and fuzzing workflow has been tested for recent Ubuntu (>=`20.04`) and Debian (>=`Bullseye`).