Created
July 6, 2021 16:43
-
-
Save socketbox/516b1f3d0ebd40c43dea4d8701027e2c to your computer and use it in GitHub Desktop.
Install postgresql-client-13 on Debian Buster
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt update | |
apt -y install gnupg2 | |
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - | |
echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list | |
apt update | |
apt -y install postgresql-client-13 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment