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 eacf1fc commit 595f031Copy full SHA for 595f031
Makefile
@@ -13,13 +13,12 @@ all: help
13
.PHONY: venv
14
venv: ## Create a Python virtual environment
15
$(info Creating Python 3 virtual environment...)
16
- poetry shell
+ pipenv shell
17
18
.PHONY: install
19
install: ## Install Python dependencies
20
$(info Installing dependencies...)
21
- poetry config virtualenvs.create false
22
- poetry install
+ sudo pipenv install --system --dev
23
24
.PHONY: lint
25
lint: ## Run the linter
0 commit comments