Friday, May 22, 2015

Homebrew Installation on MAC

To install the home brew, below command can be used 

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

The above command tried to install, however resulted in permission errors. The git hub link in the references section was giving good info. there are two options

1, chmod -R 775 Library

2. cd /usr/local
# Moving old stuff out of the way.
sudo mv -v Library Library.old
# Now run Homebrew install script again.

After installing the package installations can be done by the following sample commands

$ brew install wget

References:

http://mxcl.github.com/homebrew/

No comments:

Post a Comment