Skip to content

Commit

Permalink
fix make
Browse files Browse the repository at this point in the history
  • Loading branch information
eljandoubi committed Aug 24, 2024
1 parent 97b08f2 commit 8131a33
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 8131a33

Please sign in to comment.