Step1: Install brew
Run below script on terminal this may take less than 5 min.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
eval "$(/opt/homebrew/bin/brew shellenv)"
Permanently add this on your bash file.
vim ~/.bashrc
Add the following line at the end of the file
eval "$(/opt/homebrew/bin/brew shellenv)"
Source the file to apply the changes immediately
source ~/.bashrc
Edit your .bash_profile
if you haven't or check if it exists
vim ~/.bash_profile
Add this line at the end
eval "$(/opt/homebrew/bin/brew shellenv)"
Apply changes
source ~/.bash_profile
If you are using zsh then run this.
echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
brew --version
expected output:
(base) 3c06300342c2:Downloads rupeshti$ brew --version
Homebrew 4.2.17
Homebrew/homebrew-core (git revision d34e0cafb1e; last commit 2024-04-12)
Homebrew/homebrew-cask (git revision d4f38861fd; last commit 2024-04-12)
brew install wget
# open .zshrc file
vim ~/.zshrc #press i to edit then enter below line
export PATH=/opt/homebrew/bin:$PATH
# press esc :wq to save and close, close and reopen termina and then type brew it should work