I\'ve installed Postgres93 on my Mac. I can open the application, and \"Open psql\" through the app which opens up a command line interface with psql.
However, when I ty
In my case, I installed Postgres12 and had the same issue. I had to look out for the location of my bin folder. It happened to be in /Applications/2ndQuadrant/PostgreSQL/12/bin
. So I had to run export PATH="/Applications/2ndQuadrant/PostgreSQL/12/bin:$PATH"
in my terminal and restart the terminal. That solved it.