From c2fb45d640f2dd6d6c7e139b1840700021f9aca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Tue, 29 Apr 2025 12:55:07 +0200 Subject: [PATCH] docs: add notes about freeBSD install (#3124) --- docs/guide/installation.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/guide/installation.md b/docs/guide/installation.md index def8fe54..86f30fe8 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -564,3 +564,12 @@ docker run --detach --publish 5000:5000 --name lnbits -e "LNBITS_BACKEND_WALLET_ ``` Finally you can access your lnbits on your machine at port 5000. + +### FreeBSD notes + +Currently there is an issue with secp256k1 0.14.0 on FreeBSD. Thanks to @GitKalle + +1. Install package `py311-secp256k1` with `pkg install py311-secp256k1` +2. Change version in `pyproject.toml` from 0.14.0 to 0.13.2 +3. Rewrite `poetry.lock` file with command `poetry lock` +4. Follow install instruction with Poetry