简体   繁体   中英

Cannot install Posgresql on Ubuntu 19.04

Typing sudo apt-get install postgresql-11 gives me error:

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 postgresql-11 : Depends: postgresql-client-11
                 Depends: libicu55 (>= 55.1-1~) but it is not installable
                 Depends: libpq5 (>= 9.3~) but it is not going to be installed
                 Depends: libssl1.0.0 (>= 1.0.2~beta3) but it is not installable
                 Recommends: sysstat but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

How Can I solve this error and finally install Postgres on my ubuntu?

To solve the unmet dependencies error just add latest PostgreSQL apt repository

$ sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list'
$ wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | sudo apt-key add -

Then just fire update command

$ sudo apt-get update

After that in your case install postgresql-11

$ sudo apt-get install postgresql-11

I had the same problem and this is how I solved it. Went to https://packages.debian.org/buster/postgresql-11 and downloaded the package for me was libicu63 then I installed it manually. the run sudo apt install postgresql to install the latest postgresql.

Check the postgresql version psql -V

For me this is the result: psql (PostgreSQL) 15.0 (Debian 15.0-1.pgdg100+1)

sudo apt-get update
sudo apt-get install postgresql postgresql-contrib

Try to run that command, and let me know what you see. Apparently postgres requires some packages that you haven't installed yet

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM