From a7d27467f00fccfa7a21edb505a96c1e1d34180c Mon Sep 17 00:00:00 2001 From: ben Date: Thu, 28 Jul 2022 11:43:31 +0100 Subject: [PATCH] Updated install docs --- docs/devs/installation.md | 2 +- docs/guide/installation.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/devs/installation.md b/docs/devs/installation.md index f4d6b145..b807ce34 100644 --- a/docs/devs/installation.md +++ b/docs/devs/installation.md @@ -8,7 +8,7 @@ nav_order: 1 # Installation This guide has been moved to the [installation guide](../guide/installation.md). -To install the developer packages, use `pipenv install --dev`. +To install the developer packages for running tests etc before pr'ing, use `./venv/bin/pip install pytest pytest-asyncio pytest-cov requests mock black mypy isort`. ## Notes: diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 8ebbcf13..1c2a757a 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -82,10 +82,10 @@ Problems installing? These commands have helped us install LNbits. sudo apt install pkg-config libffi-dev libpq-dev # if the secp256k1 build fails: -# if you used pipenv (option 1) -pipenv install setuptools wheel -# if you used venv (option 2) +# if you used venv ./venv/bin/pip install setuptools wheel +# if you used poetry +poetry add setuptools wheel # build essentials for debian/ubuntu sudo apt install python3-dev gcc build-essential ```