Skip to content

Commit b9c97a4

Browse files
authored
docs: announce venv creation before installing packages (#3729)
1 parent ea353ad commit b9c97a4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ venv:
6464
echo "venv already exists."; \
6565
echo "To recreate it, remove it first with \`make clean-venv'."; \
6666
else \
67+
echo "Creating venv in $(VENVDIR)"; \
6768
$(PYTHON) -m venv $(VENVDIR); \
6869
$(VENVDIR)/bin/python3 -m pip install -U pip wheel; \
6970
$(VENVDIR)/bin/python3 -m pip install -r requirements.txt; \

0 commit comments

Comments
 (0)