Added pip and virtualenv installation steps to Mac's bootstrap script.

This commit is contained in:
Douglas José 2015-10-12 21:25:52 -04:00
parent 013d5d2ea9
commit 6ae3f4c973

View file

@ -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