Skip to content

Instantly share code, notes, and snippets.

@bramp
Created June 17, 2024 20:16
Show Gist options
  • Save bramp/f16444cd6d7595235ddc8216d949bfe2 to your computer and use it in GitHub Desktop.
Save bramp/f16444cd6d7595235ddc8216d949bfe2 to your computer and use it in GitHub Desktop.
My quick mac setup
# My Mac Setup
# Using a lot of notes from https://www.robinwieruch.de/mac-setup-web-development/
# Enable intel2arm silcon
sudo softwareupdate --install-rosetta --agree-to-license
# Install brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# Install brew packages
brew install \
go \
openjdk \
python@3 \
rust \
wget \
nvm \
terminal-notifier \
jq \
imagemagick \
htop \
qpdf
# Install brew casks.
brew install --cask \
google-chrome \
iterm2 \
visual-studio-code \
sublime-text \
autodesk-fusion360 \
prusaslicer \
inkscape \
gimp \
adobe-acrobat-reader \
rive
# Android
brew install --cask \
temurin `# Latest JDK` \
android-studio \
android-file-transfer
# The following seem best installed from within Android Studio (via the "sdk manager")
# android-commandlinetools \
# android-platform-tools
# Install for IOS dev
echo "Go to https://developer.apple.com/xcode/ and install xcode"
read -s -k '?Press any key to continue.'
brew install \
cocoapods
brew autoupdate start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment