macos – After installing Homebrew I get `zsh: command not found: brew`
macos – After installing Homebrew I get `zsh: command not found: brew`
I had a similar issue on macOS Big Sur (11.0.1). In my case homebrew was saved in /opt/homebrew/
, and not in /usr/local/...
.
So I added
export PATH=/opt/homebrew/bin:$PATH
to .zshrc
file in my home directory, and the ZSH shell was able to find the brew command.
for this error zsh: command not found: brew
- Make sure you’ve installed Brew, with this (wait until its done installing)
(Edit: added ending quote to the end)
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Then follow NEXT STEPS shown on command line, it should show something like this
==> Next steps:
- Add Homebrew to your PATH in /Users/$USER/.zprofile:
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> /Users/$USER/.zprofile
eval $(/opt/homebrew/bin/brew shellenv)
- Copy and paste the first line on the same terminal window, then hit enter
echo 'eval $(/opt/homebrew/bin/brew shellenv)' >> /Users/$USER/.zprofile
- Then Copy and paste the last line on the same terminal window, then hit enter
eval $(/opt/homebrew/bin/brew shellenv)
Finally you should be able to use brew help
and if that works, it means that brew was installed properly and running from ZSH
.
macos – After installing Homebrew I get `zsh: command not found: brew`
Homebrew has been installed on you computer. You need to modify your PATH like this:
export PATH=/usr/local/bin:$PATH
or execute brew
from its origin:
/usr/local/bin/brew install maven
Related posts on Macos :
- macos – OpenSSL and Rand_bytes
- macos – Installing upx with Mac Big Sur
- macos – Java/JDK for the Apple M1 chip
- macos – Setup local LDAP server in mac OSX
- macos – Remote debugging using lldb/Xcode
- macos – How to create md5 hash in bash in Mac OS X
- python – How to correctly uninstall numpy on MacOSX?
- macos – Python: ImportError: lxml not found, please install it
- macos – airmon-ng not working in terminal (command not found)