-bash: psql: command not found

-bash: psql: command not found

我在运行 Mac 10.11 时psql -h localhost -U monitor -W postgres不断收到

-bash: psql: command not found


这就是我所拥有的一切。

/usr/local/bin
/usr/bin
/bin
/usr/sbin
/sbin
/usr/local/pgsql/bin

答案1

如果您已使用 Postgres 应用程序安装了 Postgres,则需要在路径中添加 psql。在以下命令中更改 Postgres 版本。

export PATH=/Library/PostgreSQL/9.6/bin/:$PATH 

或者你可以将上面的行添加到~/.bash_profile or ~/.profile

然后执行以下命令

source ~/.bash_profile

https://www.installvirtual.com/question/psql-command-not-found-mac/

相关内容