답변:
다음을 사용하여 설치할 수있는 버전을 찾을 수 있습니다 brew search
.
$ brew search postgresql
==> Searching local taps...
postgresql postgresql@9.4 postgresql@9.5 postgresql@9.6
이러한 이전 버전 중 하나를 설치하려면 전체 이름을 brew install
다음 으로 전달하십시오 .
$ brew install postgresql@9.6
특정 버전의 PATH를 bash 환경에 추가하는 방법에 대한 지침을 제공하므로 psql
등을 사용할 수 있습니다 .
psql
최신 버전의 postgresql 을 계속 부팅하는 경우 다음을 시도하십시오.
brew install postgres@9.6
cp -rf /usr/local/Cellar/postgresql@9.6/9.6.9 /usr/local/Cellar/postgresql/.
brew switch postgres 9.6.9
psql
명령 이없고 libpq-fe.h
라이브러리를 사용할 수 있습니다
brew install postgresql@9.6
작동 하는 것처럼 보이지만 시도해도 brew info postgresql
여전히 10.3 (현재 안정)을 가리 킵니다. 작동 하는 brew info postgresql@9.6
것처럼 보이지만 할 수는 없습니다 brew switch
. 아직도 어떻게 해결할 수 있는지 아직 확실하지 않습니다.