为了让Android正常工作,我在12.10上注意到了这一点。对于64位版本,需要安装:
sudo apt-get install ia32-libs但是,在64位12.10下,我得到了以下错误:
The following packages have unmet dependencies:
ia32-libs : Depends: ia32-libs-multiarch but it is not installable和
> apt-get install ia32-libs-multiarch
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package ia32-libs-multiarch is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'ia32-libs-multiarch' has no installation candidate发布于 2013-04-16 22:44:50
我找到了这里注释#27的解决方案,
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install ia32-libs然后32位库就可以正常安装了(至少对我来说!)希望这能帮上忙!
发布于 2014-04-22 19:51:45
正如你在评论中看到的那样,接受的答案不再起作用了。我在其他地方找到了一个可行的解决方案:
sudo dpkg --add-architecture i386
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
sudo apt-get update && sudo apt-get install skypehttps://askubuntu.com/questions/282194
复制相似问题