From 24a2df45722af94af069a9d214fd52643bdd5e67 Mon Sep 17 00:00:00 2001 From: Faustin Lammler Date: Sun, 28 Apr 2024 23:48:30 +0200 Subject: [PATCH] Use uv for venv too --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 38efc096..cfb1d5bf 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ install: ## Install all necessary tools venv: ## Create python3 venv if it does not exists $(info --> Create python virtual env ($(VENV_DIR))) - [[ -d $(VENV_DIR) ]] || $(shell command -v python3) -m venv $(VENV_DIR) + [[ -d $(VENV_DIR) ]] || uv venv $(VENV_DIR) @echo -e "\n--> You should now activate the python3 venv with:" @echo -e "source $(VENV_DIR)/bin/activate\n"