0

I have this:

 # apt-get update
 # apt-get install -y postgresql-client=11.2

and I get

E: Version '11.2' for 'postgresql-client' was not found

but if I remove the version from the install and I try to run pg_dump command, I get:

stderr: pg_dump: server version: 11.2; pg_dump version: 10.10 (Ubuntu 10.10-0ubuntu0.18.04.1)

seems weird that there is no client version of the same value. What can I do to find the closest possible client-lib version?

1 Answers1

1

Use apt-cache policy <packagename> to find the available versions. Next use

sudo apt install <packagename>=<version string>

to install that specific version.