Answers for "zsh: command not found: brew"

2

zsh: command not found: brew

echo 'export PATH="/usr/local/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
Posted by: Guest on May-31-2021
1

zsh: command not found: brew

#works on mac m1

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> /Users/$USER/.zprofile
eval $(/opt/homebrew/bin/brew shellenv)
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> /Users/$USER/.zprofile
eval $(/opt/homebrew/bin/brew shellenv)
Posted by: Guest on July-19-2021
6

zsh: command not found: brew

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Posted by: Guest on November-29-2020
0

zsh: command not found

PATH=/bin:/usr/bin:/usr/local/bin:${PATH}
export PATH
Posted by: Guest on August-02-2020
0

zsh: command not found: brew

// check if brew is there with the following command:
brew help

// if there is no output, do the following:
open ~/.zshrc
// add the following to the file:
export PATH=/opt/homebrew/bin:$PATH
Posted by: Guest on October-12-2021

Code answers related to "zsh: command not found: brew"

Browse Popular Code Answers by Language