postgresql Homebrew在哪里安装Postgres可执行文件?

soat7uwm  于 2023-06-22  发布在  PostgreSQL
关注(0)|答案(3)|浏览(175)

Homebrew将Postgres可执行文件安装在哪个目录?我到处都找过了。

k4ymrczo

k4ymrczo1#

通常你可以在/usr/local/Cellar中找到食谱。你试过找那里吗?

gcmastyq

gcmastyq2#

在Homebrew管理的bin/目录中。弹出一个终端并运行:

$ echo `brew --prefix`/bin

输出将是安装Postgres可执行文件的目录。

vql8enpb

vql8enpb3#

对于版本14,位置为:

/usr/local/Cellar/postgresql@14

使用完整版本查找可执行文件:

/usr/local/Cellar/postgresql@14/14.8/lib/postgresql@14

相关问题