如何在 Big Sur Apple M1 上安装 pg_cron?

How to install pg_cron on Big Sur Apple M1?

您可能必须从源安装。该文档描述了:

git clone https://github.com/citusdata/pg_cron.git
cd pg_cron
# Ensure pg_config is in your path, e.g.
export PATH=/usr/pgsql-12/bin:$PATH
make && sudo PATH=$PATH make install

您需要安装 GNU make、C 编译器和 PostgreSQL 头文件;其他依赖关系必须通过艰难的方式找到,因为文档对它们没有提及。