安装 pgsql
brew uninstall --force postgresql
rm -rf /usr/local/var/postgres
brew install postgres
brew install postgis
查看版本
psql -V
#
psql (PostgreSQL) 14.9 (Homebrew)
启用拓展
psql postgres
CREATE EXTENSION postgis;
标签:psql,postgres,postgis,mac,install,brew,安装
From: https://www.cnblogs.com/guanchaoguo/p/17677614.html