From 9554488ea0965aa1b07662b51d9f3cb6944a7782 Mon Sep 17 00:00:00 2001 From: Dearg OBartuin Date: Thu, 10 Dec 2020 13:44:29 +0000 Subject: [PATCH] Update README.md Updated Homebrew installation command due to deprecated ruby installer. Also added option to install Homebrew is using Apple silicon --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a3e3b87..fdff361 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,13 @@ xcode-select --install Once that is done, we can install Homebrew by copy-pasting the installation command from the [Homebrew homepage](http://brew.sh/) inside the terminal: ``` -/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" +/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" +``` + +Or if you're using Apple silicon include `arch-x86_64` before any Homebrew command for example + +``` +arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" ``` Follow the steps on the screen. You will be prompted for your user password so Homebrew can set up the appropriate permissions.