Recent Comments
Link
Recent Posts
Today
Total
«   2025/07   »
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
관리 메뉴

Study Memory Work

macOS 에 ProstgreSQL client설치하기 본문

Linux (Ubuntu, macOS)

macOS 에 ProstgreSQL client설치하기

Hera Choi 2023. 5. 26. 10:59
# PostgreSQL 관련 인터페이스를 제공하는 C 라이브러리 설치
brew install libpq

# 환경변수 등록
echo 'export PATH="/opt/homebrew/opt/libpq/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc

# 설치 확인
psql --version
psql --help