mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 16:22:18 -04:00
Added pip and virtualenv installation steps to Mac's bootstrap script.
This commit is contained in:
parent
013d5d2ea9
commit
6ae3f4c973
1 changed files with 10 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue