diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-03-19 20:04:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-19 20:04:46 (GMT) |
commit | afe5e46a4e40a9875c15df67fb652d89415f82c2 (patch) | |
tree | 4b14bedafc97beebb980f6e9346c5cec611288ed /Doc | |
parent | 16ce6861e0936d8daf5627b1dfc18cc96b137f38 (diff) | |
download | cpython-afe5e46a4e40a9875c15df67fb652d89415f82c2.zip cpython-afe5e46a4e40a9875c15df67fb652d89415f82c2.tar.gz cpython-afe5e46a4e40a9875c15df67fb652d89415f82c2.tar.bz2 |
[3.12] docs: announce venv creation before installing packages (GH-117036) (#117040)
Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
Diffstat (limited to 'Doc')
-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); \ |