Skip to content

Instantly share code, notes, and snippets.

@ilyabrin
Created March 15, 2016 09:52
Show Gist options
  • Select an option

  • Save ilyabrin/7e0cda013a16b1b3ed39 to your computer and use it in GitHub Desktop.

Select an option

Save ilyabrin/7e0cda013a16b1b3ed39 to your computer and use it in GitHub Desktop.
Installing PGadmin III on Linux
# Create /etc/apt/sources.list.d/pgdg.list and put the following contents:
echo "deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main" > /etc/apt/sources.list.d/pgdg.list
sudo apt-get install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install postgresql-9.4 pgadmin3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment