OSX Setup¶
One-time Steps¶
Install the following pieces of software:
XCode¶
Java 8¶
Homebrew¶
The Homebrew homepage is here.
Install brew on OSX with:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Upgrade installed packages with:
brew update
brew upgrade
Keep your brew-installed apps up to date with:
brew list
Check the health of your brew
configuration with:
brew doctor
Cleanup old files with:
brew prune
Python 2¶
brew install python
Python 3¶
brew install python3
pip¶
sudo easy_install pip
GitHub Desktop¶
maven¶
brew install maven
gradle¶
brew install gradle
httpie¶
brew install httpie
Vim Setup¶
Create a .vimrc file containing this:
set ts=4 showmatch
set ruler laststatus=2 title hlsearch
syntax on
let python_highlight_all = 1
Flush DNS cache¶
sudo dscacheutil -flushcache;sudo killall -HUP mDNSResponder