From 6d343be99fcd83e38fdcda3ef19d4332a2100217 Mon Sep 17 00:00:00 2001 From: Rakesh Nair Date: Mon, 26 Sep 2016 16:47:05 -0700 Subject: [PATCH] use pip3 instead of pip in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 80d3d819..e58e87f8 100644 --- a/Makefile +++ b/Makefile @@ -25,10 +25,10 @@ endif ifeq (${platform},Darwin) install-python-dependencies: - sudo -H pip install --upgrade ${pydeps} + sudo -H pip3 install --upgrade ${pydeps} else install-python-dependencies: - pip install --upgrade pyyaml boto3 + pip3 install --upgrade pyyaml boto3 endif install-tools: $(tools)