How to install homebrew on M1 mac

Homebrew installation on apple silicon, step by step: Open a terminal window (it should be zsh) Run this command: /bin/bash -c “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)” In my case, installation show me errors, I just installed again, and then show: Installation successful!, and warning: /opt/homebrew/bin is not in your PATH Then create .zshrc on home directory (If … Read more

Homebrew: Could not symlink, /usr/local/bin is not writable [closed]

Following Alex’s answer I was able to resolve this issue; seems this to be an issue non specific to the packages being installed but of the permissions of homebrew folders. sudo chown -R `whoami`:admin /usr/local/bin For some packages, you may also need to do this to /usr/local/share or /usr/local/opt: sudo chown -R `whoami`:admin /usr/local/share sudo … Read more