Brew

Run a diagnostic to list all the packages you've installed with Homebrew. You should see Ruby and its dependencies.

brew list

You can uninstall Ruby from Homebrew with brew uninstall --force ruby

The brew autoremove command will remove unused dependencies.

Postgres - Start / Stop

brew services start postgresql@14
brew services stop postgresql@14

Last updated