From f0c733ccbda8d01a909f34069b9cb5f9c00cd9b8 Mon Sep 17 00:00:00 2001 From: Greg Szabo Date: Tue, 4 Jul 2017 20:53:50 +0000 Subject: [PATCH] Added brew install description to ansible readme --- ansible/README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ansible/README.md b/ansible/README.md index 577389c66..8dff4bbb3 100644 --- a/ansible/README.md +++ b/ansible/README.md @@ -45,11 +45,18 @@ sudo yum install ansible ``` Mac OSX: +If you have (Homebrew)[https://brew.sh] installed, then it's simply +``` +brew install ansible +``` + +If not, you can install it using `pip`: ``` sudo easy_install pip sudo pip install ansible ``` + To make life easier, you can start an SSH Agent and load your SSH key(s). This way ansible will have an uninterrupted way of connecting to your servers. ```