I have installed postgresql on my mac!
- However when I run the command "psql" it says:
zsh: command not found: psql
I have located the location of my psql command (with other all postgres commands + pgadmin) and it is in /Users/Library/PostgreSQL/13/bin
when I do echo $PATH I get:
/Library/Frameworks/Python.framework/Versions/3.8/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
- Now what do I do to run psql without any error?
which psql
to locate it and add/modify PATH. How did you install it? - kometenpsql
is not on thePATH
. You will have to modify your path to include it - coagmano/usr/local/bin
- coagmano