How to find all packages installed using Homebrew?

This article show you how to find all packages installed using Homebrew? 1. brew list Open the Terminal and runs the command brew list to list all the installed packages using Homebrew. Terminal % brew list ==> Formulae aom curl giflib imath libevent libssh2 maven ==> Casks adoptopenjdk rar temurin temurin18 2. brew deps –tree …

Read more

Where does Homebrew install packages on Mac?

By default, Homebrew will install all packages in the directory /usr/local/Cellar/, and also creates symbolic links at /usr/local/opt/ and /usr/local/bin/ (for executable files). Terminal /usr/local/Cellar/ /usr/local/opt/ /usr/local/bin/ Terminal % brew -v Homebrew 2.7.2 Homebrew/homebrew-core (git revision 3c379; last commit 2021-01-11) Homebrew/homebrew-cask (git revision 40d45; last commit 2021-01-11) P.S Tested with Homebrew 2.7.2 and macOS Big …

Read more

How to install Java JDK on macOS

This article shows how to install Java JDK on macOS, Homebrew package manager, manual installation, and switch between different JDK versions. Tested with macOS 11 Big Sur Homebrew 2.7.4 JDK 8, 14, 16, 16 (AdoptOpenJDK and OpenJDK) Topics Homebrew install latest Java (OpenJDK) on macOS Homebrew install Java 8 (OpenJDK) on macOS Homebrew install a …

Read more