From b876076ff2ad887b3121b0ae976dcf4a8e47411e Mon Sep 17 00:00:00 2001 From: Ari Kalfus Date: Sun, 13 Oct 2019 19:56:55 -0400 Subject: [PATCH] Additional make install step for pip3 (#4) * Update default make command * Add Github Actions badge * Added separate install check for pip3 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 803f6fe..6a1afcb 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ all: install provision .PHONY: install install: if [ ! -f /usr/bin/python3 ]; then sudo apt install python3; fi; + if [ ! -f /usr/local/bin/pip3 ]; then sudo apt install python3-pip; fi; if [ ! -f ~/.local/bin/pipenv ]; then pip3 install pipenv; fi; if [ ! $$(find ~/.local/share/virtualenvs/ -name "dev_setup*") ]; then pipenv install; fi; if [ ! -d ~/.ansible/roles/gantsign.visual-studio-code ]; then pipenv run ansible-galaxy install gantsign.visual-studio-code; fi;