I should do
apt-get install postgresql-9.3
However this would install the latest version (9.3.16). I want to install 9.3.3 How do I do that?
if I do:
apt-get install postgresql-9.3.3
I get:
E: Unable to locate package postgresql-9.3.3
E: Couldn't find any package by glob 'postgresql-9.3.3'
E: Couldn't find any package by regex 'postgresql-9.3.3'
What can I do?
A specific version of a package can be selected for installation by following the package name with an equals (=) and the version of the package to select.
Example: apt-get install postgresql=9.3.3