From 110bd8285bc93165782f0818f725be1824f712a9 Mon Sep 17 00:00:00 2001 From: Sietze van Buuren Date: Wed, 29 Nov 2023 10:18:08 +0100 Subject: [PATCH] Add required debian packages for local install This commit adds a recommendation to install additional Debian packages to be able to run SQUAD locally. The installation of the required python packages using pip might fail, if these debian packages aren't installed. Unfortunately, the resulting error messages do not directly state that these debian packages are missing. Hence, a hint in the documentation is helpful to new users. Signed-off-by: Sietze van Buuren --- doc/quickstart.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/quickstart.rst b/doc/quickstart.rst index 1b79e5df9..93fe1939c 100644 --- a/doc/quickstart.rst +++ b/doc/quickstart.rst @@ -14,6 +14,11 @@ with the C library, install it with:: apt-get install libyaml-dev +On top of that, the following development packages may be required. Please make +sure they're installed by issuing:: + + apt-get install libpq-dev python3-dev build-essential + To install the dependencies:: pip3 install -r requirements-dev.txt