Skip to content

Instantly share code, notes, and snippets.

@MilkSjeik
MilkSjeik / homebrew_m1.sh
Created December 26, 2020 12:54 — forked from nrubin29/homebrew_m1.sh
Install Native Homebrew on Apple Silicon M1
# We'll be installing Homebrew in the /opt directory.
cd /opt
# Create a directory for Homebrew. This requires root permissions.
sudo mkdir homebrew
# Make us the owner of the directory so that we no longer require root permissions.
sudo chown -R $(whoami) /opt/homebrew
# Download and unzip Homebrew. This command can be found at https://docs.brew.sh/Installation.