Ubuntu – Installing pgadmin 3 for Ubuntu 11.10 and postgresql 9.1

postgresql

I've installed pgadmin3 on a remote ubuntu client and succesfully connected to the postgres db using:

sudo apt-get install pgadmin3

Problem is that when connecting to the postgres 9.1 server it notifies me that I don't have the latest pgadmin and some of the features might not work using this client.

From reading the pgadmin site I should download the postgres binary at http://www.enterprisedb.com/products/pgdownload.do but that's only a installer bin.

How can I install the pgadmin from that binary as the ubuntu one is not the latest? Alternatively, is there any other location where I can find the pgadmin binaries?

Best Answer

There is a PPA having 1.14.0beta1 version but it does not have 11.10 support:

https://launchpad.net/~rhonda/+archive/pgadmin3

So you can try to add this PPA as 11.04 or download directly the packages and install them by hand:

https://launchpad.net/~rhonda/+archive/pgadmin3/+packages

Related Question