Skip to content

Instantly share code, notes, and snippets.

@canering
Forked from jeremydw/install_brew.sh
Created October 4, 2016 05:25
Show Gist options
  • Save canering/281a769d7bcdbe1cefefe2f5f0a95e61 to your computer and use it in GitHub Desktop.
Save canering/281a769d7bcdbe1cefefe2f5f0a95e61 to your computer and use it in GitHub Desktop.
Install Brew into your home directory
cd ~
mkdir homebrew && curl -L https://github.com/Homebrew/homebrew/tarball/master | tar xz --strip 1 -C homebrew
# Add the following to your .bash_profile
export PATH=$HOME/homebrew/bin:$PATH
sudo ln -s ~/homebrew/include/ /usr/local/include
sudo cp ~/homebrew/lib/lib* /usr/local/lib/
brew install redis
redis-cli
docker start
docker login
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment