From 8131a33454e585596aac996bfcf242a910404148 Mon Sep 17 00:00:00 2001 From: eljandoubi Date: Sat, 24 Aug 2024 13:02:26 +0200 Subject: [PATCH] fix make --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a77c068..f203a13 100644 --- a/Makefile +++ b/Makefile @@ -6,13 +6,12 @@ CONDA_BASE := $(shell conda info --base) # Env args ENV_NAME=SDenv -REQUIREMENTS=requirements.txt build: . $(CONDA_BASE)/etc/profile.d/conda.sh && \ conda create --name $(ENV_NAME) python=3.12 -y && \ conda activate $(ENV_NAME) && \ - pip install -r requirements.txt && \ + pip install -r requirements.txt clean: conda remove --name $(ENV_NAME) --all -y \ No newline at end of file