From 4793ea0d18331b9837a3a0c0163d395c8a10ef14 Mon Sep 17 00:00:00 2001 From: Candle <50766841+CandleHater@users.noreply.github.com> Date: Fri, 18 Feb 2022 16:35:32 +0100 Subject: [PATCH] added "missing" libffi/libpq package When I tryed to run "pipenv install --dev" on a Pi 4 with the latest Raspberry OS it failed with two dependencies. These additional installations fixed it. --- docs/devs/installation.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/devs/installation.md b/docs/devs/installation.md index c8efb1c6f..729da1ca2 100644 --- a/docs/devs/installation.md +++ b/docs/devs/installation.md @@ -12,6 +12,8 @@ LNbits uses [Pipenv][pipenv] to manage Python packages. ```sh git clone https://github.com/lnbits/lnbits-legend.git cd lnbits-legend/ + +sudo apt-get install -y python3-venv pipenv shell # pipenv --python 3.9 shell (if you wish to use a version of Python higher than 3.7) pipenv install --dev @@ -19,6 +21,9 @@ pipenv install --dev # If any of the modules fails to install, try checking and upgrading your setupTool module # pip install -U setuptools + +# install libffi/libpq in case "pipenv install" fails +# sudo apt-get install -y libffi-dev libpq-dev ``` ## Running the server