Skip to content

Commit b4f8021

Browse files
committed
minorfix
1 parent 2a7c194 commit b4f8021

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ down-maintenance: ## Stop the maintenance mode
7171
fi \
7272
,)
7373

74+
.PHONY: venv
75+
venv: .venv ## Creates a python virtual environment with dev tools (pip, pylint, ...)
76+
.venv:
77+
@python3 -m venv .venv
78+
@.venv/bin/pip3 install --upgrade pip wheel setuptools
79+
@.venv/bin/pip3 install typer
80+
@echo "To activate the venv, execute 'source .venv/bin/activate'"
81+
7482
# Misc: info & clean
7583
.PHONY: info info-vars info-local
7684
info: ## Displays some important info

0 commit comments

Comments
 (0)