We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea92d7 commit 8b9fcd0Copy full SHA for 8b9fcd0
Makefile
@@ -71,6 +71,14 @@ down-maintenance: ## Stop the maintenance mode
71
fi \
72
,)
73
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
+
82
# Misc: info & clean
83
.PHONY: info info-vars info-local
84
info: ## Displays some important info
0 commit comments