Post

Installing Homebrew (MacOS)

  1. Open the terminal.
  2. Run the code below:
    1
    2
    
    $ /bin/bash -c "$(curl -fsSL \
      https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
  3. Complete the steps the terminal will prompt you to take. At the present those steps will likely be as follows:
    1
    2
    3
    
    $ echo >> ~/.zprofile
    $ echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /.zprofile
    $ eval "$(/opt/homebrew/bin/brew shellenv)"
    
  4. Done.
This post is licensed under CC BY 4.0 by the author.