From: Ned Batchelder Date: Tue, 19 Mar 2024 19:55:20 +0000 (-0400) Subject: docs: announce venv creation before installing packages (#117036) X-Git-Tag: v3.13.0a6~223 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=332ac46c09cd500a16a5f03b53f038b1d9ce77ef;p=thirdparty%2FPython%2Fcpython.git docs: announce venv creation before installing packages (#117036) --- diff --git a/Doc/Makefile b/Doc/Makefile index 38fd60f2ae01..dd068c520ad6 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); \