Skip to content

Commit

Permalink
docs: announce venv creation before installing packages (python#117036)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat authored and diegorusso committed Apr 17, 2024
1 parent da28005 commit 1ea382f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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); \
Expand Down

0 comments on commit 1ea382f

Please sign in to comment.