Answers for "how to install pg_dump on mac"

1

brew install pgdump

brew install libpq
Posted by: Guest on August-20-2020
0

how to install pg_dump on mac

brew install libpq
# ZSH
echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.zshrc
source ~/.zshrc
# Bash
echo 'export PATH="/usr/local/opt/libpq/bin:$PATH"' >> ~/.bash_profile
source ~/.bash_profile
Posted by: Guest on August-24-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language