0

我正在尝试在我的 Mac 上安装 Timescaledb,http: //docs.timescale.com/getting-started/installation?OS=mac&method=Source 。对此的要求是 PostgreSQL 9.6,所以我下载了 postgres.app。但是,当我尝试构建和安装时timescaledb- 我收到以下错误:

Z-MBP:~ user$ cd timescaledb
Z-MBP:timescaledb user$ make
/bin/sh: pg_config: command not found
Makefile:6: *** "TimescaleDB requires PostgreSQL 9.6".  Stop.

但是 postgres.app 已安装并且服务器运行良好。出了什么问题,我该如何解决?

4

1 回答 1

1

Makefile 告诉你它找不到pg_config.

由于 postgres.app 应该在其install中包含此 CLI 实用程序,我的第一个猜测是您的 $PATH 中没有该实用程序。

我想你在 TimescaleDB 的 github 问题页面上问了同样的问题,并且鉴于那里正在进行的问答,我想只是向读者指出这一点:

https://github.com/timescale/timescaledb/issues/156

于 2017-08-15T03:52:15.253 回答