Skip to content

Commit

Permalink
Merge pull request certbot#963 from douglasjose/python-deps-mac
Browse files Browse the repository at this point in the history
Added pip and virtualenv installation steps to Mac's bootstrap script.
  • Loading branch information
bmw committed Oct 16, 2015
2 parents 21a1ec7 + 6ae3f4c commit 4a7ce62
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions bootstrap/mac.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4a7ce62

Please sign in to comment.