Last active
March 31, 2019 00:03
-
-
Save gmdfalk/302993443d6d497329880dd6aa6b4407 to your computer and use it in GitHub Desktop.
macos setup
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
#/usr/bin/env bash | |
cd $HOME && | |
brew tap thoughtbot/formulae && | |
brew install rcm && | |
git clone --recursive https://github.com/serialoverflow/dotfiles.git $HOME/.dotfiles && | |
rcup -B macos -K && rcup -B macos -v | |
asdf install nodejs 10.15.3 | |
asdf global nodejs 10.15.3 | |
asdf install ruby 2.6.2 | |
asdf global ruby 2.6.2 | |
asdf plugin-add java | |
asdf install java openjdk-11 | |
asdf global java openjdk-11 | |
# Add headers for MacOS Mojave, necessary to build python | |
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target / | |
asdf plugin-add python | |
asdf install python 2.7.16 | |
asdf install python 3.7.3 | |
asdf global python 3.7.3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment