From 0cc7de2028249af81afa2b195b99012f3570ea66 Mon Sep 17 00:00:00 2001 From: pancake Date: Thu, 9 May 2024 12:44:56 +0200 Subject: [PATCH] Fix again --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ee01869d..d4d25544 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ all.old: venv: python -m venv venv - if [ -z "`find venv | grep llama_cpp`" ]; then pip install -r requirements.txt ; fi + if [ -z "`find venv | grep llama_cpp`" ]; then . venv/bin/activate ; pip install -r requirements.txt ; fi deps: venv test -n "${VIRTUAL_ENV}" || (echo "Run: . venv/bin/activate" ; exit 1)