Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Created September 28, 2015 17:34
Show Gist options
  • Save hanksudo/23d858c648e72d631989 to your computer and use it in GitHub Desktop.
Save hanksudo/23d858c648e72d631989 to your computer and use it in GitHub Desktop.
Install PostgreSQL 9.4 on ubuntu 12.04, 14.04, 14.10
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >>/etc/apt/sources.list.d/pgdg.list'
wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | sudo apt-key add -
sudo apt-get update
sudo apt-get install postgresql postgresql-contrib
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment