Skip to content

Instantly share code, notes, and snippets.

@zachfedor
Last active September 22, 2020 14:29
Show Gist options
  • Save zachfedor/7f6732279350103450ee10fb34c39692 to your computer and use it in GitHub Desktop.
Save zachfedor/7f6732279350103450ee10fb34c39692 to your computer and use it in GitHub Desktop.
CSET MacBook Setup
# Install Xcode Command Line Tools
xcode-select --install
# Install Homebrew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
brew update
# Test it out
brew cask install google-chrome
brew cask install firefox
# Install Other Applications
brew cask install atom
brew cask install iterm2
brew cask install slack
brew cask install visual-studio-code
brew cask zoom
# Install Other Command Line Tools
brew install git
brew install editorconfig
brew install postgresql
brew services start postgresql
brew install tree
brew install vim
# Install Node
brew install node
# Install Node Packages
npm install -g eslint
npm install -g http-server
npm install -g n
# configure n: https://github.com/tj/n#installation
n latest
# Install Python
brew install pyenv
# configure pyenv: https://github.com/pyenv/pyenv#homebrew-on-macos
pyenv install 3.8.5
pyenv global 3.8.5
# Make A Directory For Classwork
mkdir ~/code
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment