Skip to content

Instantly share code, notes, and snippets.

@attluh
Forked from rrgrs/installvagrant
Last active June 22, 2017 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save attluh/7b840584149936606b6cea77a5bb4f31 to your computer and use it in GitHub Desktop.
Save attluh/7b840584149936606b6cea77a5bb4f31 to your computer and use it in GitHub Desktop.
installs brew, virtualbox, and vagrant in osx
if ! type "brew" > /dev/null; then
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)";
fi
brew tap caskroom/cask;
brew cask install vagrant;
brew cask install virtualbox;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment