osx – 为什么我不能添加PostgreSQL到我的路径?

osx – 为什么我不能添加PostgreSQL到我的路径?,第1张

概述在升级到小牛后,PostgreSQL开始播放,每当我调用pg_restore而不调用完整路径时,会发出此错误消息: pg_restore: command not found 如果我指定了完整的路径,它是有效的,但这显然不是最佳的: /Applications/Postgres93.app/Contents/MacOS/bin/pg_restore --verbose --clean --no-a 在升级到小牛后,Postgresql开始播放,每当我调用pg_restore而不调用完整路径时,会发出此错误消息:
pg_restore: command not found

如果我指定了完整的路径,它是有效的,但这显然不是最佳的:

/Applications/Postgres93.app/Contents/MacOS/bin/pg_restore --verbose --clean --no-acl --no-owner -h localhost -U steven -d db/testivate_development $file_path

要解决这个问题,我已经尝试删除所有版本的Postgresql(与Homebrew),然后安装Postgres.app.你可以确认这样做是这样的:

$sudo find / -name pg_restore/Applications/Postgres93.app/Contents/MacOS/bin/pg_restorefind: /dev/fd/3: Not a directoryfind: /dev/fd/4: Not a directory

要将Postgresql添加到我的路径,我尝试将以下每行添加到〜/ .bash_profile,〜/ bashrc和〜/ .zshrc中,每次尝试后重新启动:

export PATH="/Applications/Postgres.app/Contents/MacOS/bin:$PATH"

…根据postgresapp.com文档,然后…

export PATH="/Applications/Postgres93.app/Contents/MacOS/bin:$PATH"

…根据下面的评论.

这些都没有解决我的问题.

尝试将此行添加到.bash_profile中:
export PATH="/Applications/Postgres93.app/Contents/MacOS/bin:$PATH"

并删除或注释掉以前的引用.

总结

以上是内存溢出为你收集整理的osx – 为什么我不能添加PostgreSQL到我的路径?全部内容,希望文章能够帮你解决osx – 为什么我不能添加PostgreSQL到我的路径?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1169199.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存