From 58d537279f4bcf5ef3256228b1db32f1b48fc9cd Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Sun, 10 Jan 2021 13:13:58 +0100 Subject: [PATCH] Install local package as well for import paths --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index dee1e9b..e5781ae 100644 --- a/makefile +++ b/makefile @@ -2,7 +2,8 @@ default: run setup: @python3 -m venv .venv && \ - .venv/bin/pip install -r requirements.txt + .venv/bin/pip install -r requirements.txt && \ + pip install -e . run: @cd library && python page.py