How to install the Postgresql GUI using Homebrew?

PostgreSQL’s graphical user interface app is missing from the ~/Applications folder when it is installed via Homebrew, the package manager for MacOS: brew install postgresql

Is there a way to tell brew to install the GUI?

>Solution :

The PostgreSQL package does not include a GUI app. You need to install it separately.

Two of the most commonly utilized GUI tools are:

  1. PgAdmin4: brew install --cask pgadmin4

  2. DBeaver: brew install --cask dbeaver-community

Leave a Reply