From a933009b6687227682efb8662767b90d3c5b4f5c Mon Sep 17 00:00:00 2001 From: retoor Date: Mon, 25 Nov 2024 20:15:31 +0100 Subject: [PATCH] Updated venv paths --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f421c65..a47e5c2 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ build: sync: - dr.sync + ./venv/bin/dr.sync clean: -@rm -r export @@ -20,12 +20,12 @@ sync_excempt: export_stats: @echo "Make sure you have ran 'make sync' first. Results will be in ./export/" @echo "Exporting statisticts." - dr.stats_all + ./venv/bin/dr.stats_all export_dataset: @echo "Make sure you have ran 'make sync' first." @echo "Exporting dataset to be used for LLM embedding. Result will be ./export/0_dataset.txt" - dr.dataset > export/0_dataset.txt + ./venv/bin/dr.dataset > export/0_dataset.txt export_statistics: @echo "Exporting statisticts. Result will be ./export/2_statistics.txt" @@ -41,6 +41,6 @@ export_mentions: merge_images: @echo "Merging images to one big image. Result will be ./export/1_graphs_compliation.png." - python merge_images.py + ./venv/bin/python merge_images.py