Skip to content

Commit

Permalink
docs: announce venv creation before installing packages (python#3729)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat authored Mar 19, 2024
1 parent ea353ad commit b9c97a4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,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 -U pip wheel; \
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \
Expand Down

0 comments on commit b9c97a4

Please sign in to comment.