Skip to content

Commit

Permalink
Use uv for venv too
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Apr 29, 2024
1 parent ae5f138 commit e5cf01f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit e5cf01f

Please sign in to comment.