From dc7e12642e5823eb01b5f77efbbd8ca3f3d42ae1 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Tue, 27 Sep 2022 13:59:49 +0100 Subject: [PATCH] adds dev pipenv instructions --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a9b05d4..36faa6e 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,10 @@ It is assumed that you are using **Python3.9+**. It is encouraged to [setup a vi ```sh # install dependencies & dev-dependencies + # PIP pip install -e .[dev,full] + # PIPENV + pipenv install --dev -e . # install a git hook that runs the code formatter before each commit. pre-commit install