diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2024-03-19 19:55:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 19:55:20 (GMT) |
commit | 332ac46c09cd500a16a5f03b53f038b1d9ce77ef (patch) | |
tree | 2b571d5f809e7c9c9d1d335b8442a6e0df732300 /Doc/Makefile | |
parent | 9080e9ed50d1d3c7933cda88658306f6872d2f87 (diff) | |
download | cpython-332ac46c09cd500a16a5f03b53f038b1d9ce77ef.zip cpython-332ac46c09cd500a16a5f03b53f038b1d9ce77ef.tar.gz cpython-332ac46c09cd500a16a5f03b53f038b1d9ce77ef.tar.bz2 |
docs: announce venv creation before installing packages (#117036)
Diffstat (limited to 'Doc/Makefile')
-rw-r--r-- | Doc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index 38fd60f..dd068c5 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -163,6 +163,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 --upgrade pip; \ $(VENVDIR)/bin/python3 -m pip install -r $(REQUIREMENTS); \ |