Skip to content

Commit

Permalink
Explain that a venv is being created (#1291)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Mar 19, 2024
1 parent 3732839 commit 235cc7f
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 @@ -69,6 +69,7 @@ venv:
.PHONY: ensure-venv
ensure-venv:
@if [ ! -d $(VENVDIR) ] ; then \
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.txt; \
Expand Down

0 comments on commit 235cc7f

Please sign in to comment.