mirror of
https://github.com/certbot/certbot.git
synced 2026-08-04 08:03:44 +02:00
Added pip and virtualenv installation steps to Mac's bootstrap script.
This commit is contained in:
@@ -6,3 +6,13 @@ fi
|
|||||||
|
|
||||||
brew install augeas
|
brew install augeas
|
||||||
brew install dialog
|
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
|
||||||
|
|||||||
Reference in New Issue
Block a user