Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does Homebrew install Postgres executables?

Which directory does Homebrew install Postgres executables in? I've searched just about everywhere.

like image 602
Kinnard Hockenhull Avatar asked Aug 05 '13 03:08

Kinnard Hockenhull


2 Answers

Usually you can find recipes in /usr/local/Cellar . Did you try searching there?

like image 130
jrs Avatar answered Sep 16 '22 14:09

jrs


In the bin/ directory managed by Homebrew. Pop open a terminal and run:

$ echo `brew --prefix`/bin

The output will be the directory where Postgres executables are installed.

like image 28
mipadi Avatar answered Sep 20 '22 14:09

mipadi