From 598e48610d1ccb27058b6bf30d3f7f711d7768fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Mon, 10 Apr 2017 12:21:09 +0200 Subject: [PATCH] Install venv before using pip --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1ac7e197..ce66051c 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ TEMPDIR := $(shell mktemp -d) all: install install: $(INSTALL_STAMP) -$(INSTALL_STAMP): +$(INSTALL_STAMP): $(PYTHON) $(VENV)/bin/pip install -U pip $(VENV)/bin/pip install -r requirements.txt touch $(INSTALL_STAMP)