Created
June 17, 2024 20:16
-
-
Save bramp/f16444cd6d7595235ddc8216d949bfe2 to your computer and use it in GitHub Desktop.
My quick mac setup
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
# 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