From 0c9d7016181b3006b3b17c0bedc64e9e257b90bc Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Tue, 5 Oct 2021 21:37:40 +0200 Subject: [PATCH] Add `make install-reqs` to install packages without creating env --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 95a590ea..ff07cfed 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,10 @@ export PATH := $(VENV_BIN):$(PATH) all: uninstall-httpie install test -install: venv +install: venv install-reqs + + +install-reqs: @echo $(H1)Updating package tools$(H1END) $(VENV_PIP) install --upgrade pip wheel @@ -37,6 +40,7 @@ install: venv @echo + clean: @echo $(H1)Cleaning up$(H1END) rm -rf $(VENV_ROOT)