Created
January 14, 2016 23:09
-
-
Save renesansz/8917be5ae1d3c7241fc6 to your computer and use it in GitHub Desktop.
Bootstrap script for freshly installed Mac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Install Homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# Install necessary commands | |
brew update | |
brew upgrade | |
# Install useful apps using Homebrew | |
brew install android-sdk tree | |
# Install useful apps using Homebrew Cask | |
brew cask install flux wget transmission vlc android-studio genymotion virtualbox java | |
# Install useful apps using pip | |
sudo -H pip install ipython virtualenv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment