diff --git a/bootstrap/mac.sh b/bootstrap/mac.sh index 84e87cf5b..4d1fb8208 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