Skip to content

Instantly share code, notes, and snippets.

@anton-petrov
Created December 24, 2020 04:38
Show Gist options
  • Save anton-petrov/53eb5c5b29a473ba618f9926eb06c92a to your computer and use it in GitHub Desktop.
Save anton-petrov/53eb5c5b29a473ba618f9926eb06c92a to your computer and use it in GitHub Desktop.
Homebrew for Apple 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.
curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
# Add the Homebrew bin directory to the PATH. If you don't use zsh, you'll need to do this yourself.
echo "export PATH=/opt/homebrew/bin:$PATH" >> ~/.zshrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment