Skip to content

Commit 6d343be

Browse files
committed
use pip3 instead of pip in Makefile
1 parent dda722c commit 6d343be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ endif
2525

2626
ifeq (${platform},Darwin)
2727
install-python-dependencies:
28-
sudo -H pip install --upgrade ${pydeps}
28+
sudo -H pip3 install --upgrade ${pydeps}
2929
else
3030
install-python-dependencies:
31-
pip install --upgrade pyyaml boto3
31+
pip3 install --upgrade pyyaml boto3
3232
endif
3333

3434
install-tools: $(tools)

0 commit comments

Comments
 (0)