From d9493bb75cb862ac3dbd1e7bd19233a777a1fc67 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 17 Feb 2021 15:45:22 +0100 Subject: [PATCH] Use venv'd python --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index e5781ae..e665ae2 100644 --- a/makefile +++ b/makefile @@ -6,6 +6,6 @@ setup: pip install -e . run: - @cd library && python page.py + @cd library && ../.venv/bin/python page.py .PHONY: setup run