gpt4 book ai didi

bash - 苹果电脑 `zsh: command not found: psql`

转载 作者:行者123 更新时间:2023-12-03 08:14:28 25 4
gpt4 key购买 nike

我已经像这样添加了 .bash_profile 的路径。

#psql
export "PATH=/Applications/Postgres.app/Contents/Versions/14/bin:$PATH"

在执行 source .bash_profile 后,我成功运行了 psql

问题是,当我关闭终端并重新打开它时,psql 不起作用。我必须再次source .bash_profile。我该如何修复它?

最佳答案

使用 vim ~/.zshrc~/.zshrc 中添加以下命令

export PATH="/opt/homebrew/opt/postgresql@12/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/postgresql@12/lib"
export CPPFLAGS="-I/opt/homebrew/opt/postgresql@12/include"

然后关闭终端并再次写入psql postgres,如果您收到与zsh: command not found: psql相同的错误,请尝试以下过程 -

我希望/Users/Library/PostgreSQL/12/bin不在您的“路径”中。因此,一个简单的解决方案是在 /usr/local/bin/ 中为 psql 创建符号链接(symbolic link):

sudo ln -s /Users/Library/PostgreSQL/12/bin/psql /usr/local/bin/psql

现在关闭终端并写入 psql postgres 并查看结果:)

enter image description here

关于bash - 苹果电脑 `zsh: command not found: psql`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69871159/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com