commit | 332ac46c09cd500a16a5f03b53f038b1d9ce77ef | [log] [tgz] |
---|---|---|
author | Ned Batchelder <ned@nedbatchelder.com> | Tue Mar 19 15:55:20 2024 -0400 |
committer | GitHub <noreply@github.com> | Tue Mar 19 21:55:20 2024 +0200 |
tree | 2b571d5f809e7c9c9d1d335b8442a6e0df732300 | |
parent | 9080e9ed50d1d3c7933cda88658306f6872d2f87 [diff] |
docs: announce venv creation before installing packages (#117036)
diff --git a/Doc/Makefile b/Doc/Makefile index 38fd60f..dd068c5 100644 --- a/Doc/Makefile +++ b/Doc/Makefile
@@ -163,6 +163,7 @@ 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 --upgrade pip; \ $(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS); \