Created
March 2, 2017 20:50
-
-
Save jgeo/0a7bd2c978591b0f92019ec002460f2e to your computer and use it in GitHub Desktop.
Upgrading to Mac OS Sierra
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
#Update all apps for Sierra | |
brew upgrade | |
brew update | |
#Link updates | |
brew linkapps macvim | |
#Restart Services | |
brew services restart redis | |
#Reinstall postgresql | |
brew uninstall postgresql91 | |
brew uninstall postgis15 | |
brew tap Geostellar/homebrew-formulas | |
brew install postgresql91 | |
brew install postgis15 | |
#Reinstall ruby | |
rbenv uninstall 2.3.1 | |
rbenv install 2.3.1 | |
gem install bundler | |
# Reinstall gems | |
cd ~/git/frontend | |
bundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment