我在我的电脑上运行POP-os。昨天我运行了sudo apt upgrade,但得到了以下错误
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)所以我运行了sudo apt --fix-broken install并得到
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)因此,尝试sudo apt install libc6:amd64并得到libc-bin错误,就像前面一样,所以尝试sudo apt install libc-bin并得到以下结果
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).我觉得我好像在绕圈子
发布于 2021-07-14 03:51:49
$ 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'可能会像对我一样有效。
https://stackoverflow.com/questions/67999873
复制相似问题