在 ubuntu 14.04 64 位上安装 32 位库:错误

在 ubuntu 14.04 64 位上安装 32 位库:错误
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:
 lib32stdc++6 : Depends: lib32gcc1 (>= 1:4.1.1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

现在我该怎么做?

答案1

尝试这个:

sudo apt-get -f install

这应该会安装系统中所有缺少的依赖项。
如果您尝试安装软件包,也可以尝试将其添加--fix-missing到安装命令中。

相关内容