Last active
August 1, 2023 22:40
-
-
Save rozenmd/31632990947a5bfbd53448106599b10d to your computer and use it in GitHub Desktop.
Set up a macOS device for development in one script.
This file contains 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
#!/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