Skip to content

Instantly share code, notes, and snippets.

@nycdotnet
Last active May 25, 2023 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nycdotnet/35da5dafe9f04b87c8e6d8a120456002 to your computer and use it in GitHub Desktop.
Save nycdotnet/35da5dafe9f04b87c8e6d8a120456002 to your computer and use it in GitHub Desktop.
Homebrew Packages

These are the Homebrew packages I have used:

https://brew.sh

brew install --cask visual-studio-code
brew install --cask github
brew install --cask firefox
brew install gh
brew install docker
brew install nvm  (requires additional steps here https://tecadmin.net/install-nvm-macos-with-homebrew/)
brew install --cask iterm2
brew install --cask bloomrpc
brew install --cask textmate
brew install --cask scroll-reverser
brew install --cask gimp
brew install awscli
brew install --cask dotnet-sdk
brew install ansible
brew install go
brew install postgresql
brew install --cask vlc
brew install wget
brew install earthly
brew install --cask clipy
brew install protobuf
brew install k6
brew install --cask microsoft-teams

Useful commands:

brew update
brew outdated     #(should brew update first!)
brew upgrade <name>

Note: updating postgres in particular is annoying because it requires a convenience symlink to be updated to point to the new version folder. You can use readlink -f <linkname> to show where the symlink points to, such as readlink /usr/local/Cellar/postgresql@13/bin. To update the symlink, change it like this: ln -sfn /usr/local/Cellar/postgresql@13/13.8_2/bin /usr/local/Cellar/postgresql@13/bin

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment