lib64ncurses5:The following packages have unmet dependencies

1

When I tried to install lib64ncurses5 in my ubuntu, I got this error message:

$ sudo apt-get install lib64ncurses5
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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:
 lib64ncurses5:i386 : Depends: lib64tinfo5:i386 (= 5.9-4) but it is not going to be installed
                      Depends: libc6-amd64:i386 (>= 2.4) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Normally apt-get can resolve the dependency and install all the required package. So why it fails in this case.

uname output:

Linux server001 3.5.0-39-generic #60~precise1-Ubuntu SMP Wed Aug 14 15:38:41 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

Anthony Kong

Posted 2013-09-15T11:45:02.123

Reputation: 3 117

tried to 'sudo apt-get update && sudo apt-get install -f' ? – Lorenzo Von Matterhorn – 2013-09-15T11:46:41.090

No. The command is in the question: "sudo apt-get install lib64ncurses5" – Anthony Kong – 2013-09-15T11:48:19.870

did you try to perform the command i said in order to fix your problem? – Lorenzo Von Matterhorn – 2013-09-15T11:49:03.677

Tried. Same result – Anthony Kong – 2013-09-15T12:39:54.880

then if it fails to repair itself, its up to you to solve the dependencies. google for those packages on a repository that is compatible with your distro. – Lorenzo Von Matterhorn – 2013-09-15T12:40:52.523

No answers