'libc6:amd64 current status 'half-install' POP-os
I am running POP-os on my pc. Yesterday I ran sudo apt upgrade but got the following error
The following packages have unmet dependencies.
locales : Depends: libc-bin (> 2.32)
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution)
so I ran sudo apt --fix-broken install and got
package libc6:amd64 is not ready for configuration
cannot configure (current status 'half-installed')
Errors were encountered while processing:
libc6:amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)
so tried sudo apt install libc6:amd64 and got the libc-bin error as before so tried sudo apt install libc-bin and got the following
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies.
locales : Depends: libc-bin (> 2.32)
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
I feel like I'm going round in circles
Solution 1:[1]
$ sudo dpkg -i /var/cache/apt/archives/libc6_2.33*
$ sudo dpkg -i /var/cache/apt/archives/libc-bin_2.33-0ubuntu5_amd64.deb
$ sudo dpkg -i /var/cache/apt/archives/libc-dev-bin_2.33-0ubuntu5_amd64.deb
$ sudo apt --fix-broken install
might have worked as it worked for me.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
