Skip to content

Instantly share code, notes, and snippets.

@rupeshtiwari
Last active May 13, 2024 23:47
Show Gist options
  • Save rupeshtiwari/9cfa26e3b06f2b0911bc42771a576b7c to your computer and use it in GitHub Desktop.
Save rupeshtiwari/9cfa26e3b06f2b0911bc42771a576b7c to your computer and use it in GitHub Desktop.
install Home Brew and wget in macOS homebrew

Installing Homebrew & wget in macOS

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)"

Step 2: Adding Homebrew to Your PATH

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


image

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

Step 3: Verify the Installation:

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)

Installing wget

brew install wget

Error: brew command not found resolution

# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment