How to Install Brew on Mac Mojave 10.14 Easy Guide

Installing

  1. Change to HOME Directory

    cd 
  2. Then to Install Homebrew

    mkdir homebrew && curl -L https://github.com/mxcl/homebrew/tarball/master | tar xz --strip 1 -C homebrew

    If Not XCode Installed then Install Mac Command line Tools:

    Mac Command-Line-Tools
  3. Now SetUp the PATH for Easy Using Homebrew

    nano $HOME/.bashrc

    Append this is Line:

    export PATH=~/homebrew/bin:$PATH

    Ctrl+x to Save & Exit from nano Editor
    Load the New PATH Variable:

    bash

Contents