From 385648082b52e93060cdf1f56ff7c9be8389006e Mon Sep 17 00:00:00 2001 From: Viacheslav Greshilov Date: Tue, 17 May 2022 23:00:47 +0300 Subject: [PATCH] Fix pip reinstallation on windows due to constraints --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 57b3601d24d..2a1886fb5f2 100644 --- a/Makefile +++ b/Makefile @@ -189,7 +189,7 @@ compile-deps: .update-pip $(REQS) .PHONY: install install: .update-pip - @pip install -r requirements/dev.txt -c requirements/constraints.txt + @python -m pip install -r requirements/dev.txt -c requirements/constraints.txt .PHONY: install-dev install-dev: .develop