How to install apt-get or YUM on Mac OS X

osxpackage-management

I want to use either of apt-get or yum.

How to install them and make them successful running?

Best Answer

If you want the equivalent of apt-get or yum on Mac OS X, you have two choices.

  1. Homebrew: http://brew.sh
  2. Macports: http://www.macports.org

You can use brew install PACKAGE_NAME or port install PACKAGE_NAME to install the package available.

Related Question