From 446f0243bc4955a254fc1c3f0cc6ffb65dc98fa1 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 19 Mar 2024 15:47:13 -0400 Subject: [PATCH] docs: announce venv creation before installing packages --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 2cf031838cb..6ed81ca8bae 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,7 @@ venv: echo "venv already exists."; \ echo "To recreate it, remove it first with \`make clean-venv'."; \ else \ + echo "Creating venv in $(VENVDIR)"; \ $(PYTHON) -m venv $(VENVDIR); \ $(VENVDIR)/bin/python3 -m pip install -U pip wheel; \ $(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \