Created
March 15, 2016 09:52
-
-
Save ilyabrin/7e0cda013a16b1b3ed39 to your computer and use it in GitHub Desktop.
Installing PGadmin III on Linux
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
| # 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