Skip to content

Instantly share code, notes, and snippets.

@cherifGsoul
Forked from rrgrs/installvagrant
Created October 15, 2018 09:48
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 cherifGsoul/398cad2548ee689c9fec662359d51dd5 to your computer and use it in GitHub Desktop.
Save cherifGsoul/398cad2548ee689c9fec662359d51dd5 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 phinze/homebrew-cask && brew install brew-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