Skip to content

Instantly share code, notes, and snippets.

@rozenmd
Last active August 1, 2023 22:40
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rozenmd/31632990947a5bfbd53448106599b10d to your computer and use it in GitHub Desktop.
Save rozenmd/31632990947a5bfbd53448106599b10d to your computer and use it in GitHub Desktop.
Set up a macOS device for development in one script.
#!/bin/bash
# Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
####################################
# Brew apps
####################################
brew install cask
brew install python
####################################
# Main cask apps
####################################
brew cask install slack
brew cask install discord
brew cask install the-unarchiver
brew cask install spotify
brew cask install iterm2
brew cask install gitkraken
brew cask install firefox
brew cask install google-chrome
brew cask install visual-studio-code
####################################
# Python apps
####################################
pip3 install virtualenvwrapper
# show hidden files on Mac
defaults write com.apple.finder AppleShowAllFiles TRUE;killall Finder
# AWS
# sudo pip3 install --upgrade awscli
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment