Last active
July 19, 2016 11:49
-
-
Save carymrobbins/4b8e52ab557aba597bc1 to your computer and use it in GitHub Desktop.
Installing PostgreSQL 9.4 on Ubuntu 12.04
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
sudo apt-get update | |
sudo apt-get purge postgresql-9.1 postgresql-9.2 postgresql-9.3 | |
# If you don't need postgis, you can probably get away with postgresql-contrib instead. | |
sudo apt-get install postgresql-client-common postgresql-9.4 postgresql-9.4-postgis-2.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment