From 6ae3f4c973a5326edc696c224dff286c438c84ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Douglas=20Jose=CC=81?= Date: Mon, 12 Oct 2015 21:25:52 -0400 Subject: [PATCH] Added pip and virtualenv installation steps to Mac's bootstrap script. --- bootstrap/mac.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bootstrap/mac.sh b/bootstrap/mac.sh index 6779188a7..06defa853 100755 --- a/bootstrap/mac.sh +++ b/bootstrap/mac.sh @@ -6,3 +6,13 @@ fi brew install augeas brew install dialog + +if ! hash pip 2>/dev/null; then + echo "pip Not Installed\nInstalling python from Homebrew..." + brew install python +fi + +if ! hash virtualenv 2>/dev/null; then + echo "virtualenv Not Installed\nInstalling with pip" + pip install virtualenv +fi