export PKG_CONFIG_PATH="/opt/homebrew/opt/icu4c@77/lib/pkgconfig"
asdf install postgres 17.5
psql -U postgres
create role my_user with SUPERUSER CREATEDB CREATEROLE REPLICATION BYPASSRLS LOGIN PASSWORD NULL;
gem install pg -- --with-pg-config=/Users/my_user/.asdf/installs/postgres/17.5/bin/pg_config
/Users/my_user/.asdf/installs/postgres/17.5/bin/pg_ctl -D /Users/my_user/.asdf/installs/postgres/17.5/data -l logfile start
or simply
pg_ctl start > pg.out