无法更新 wine

无法更新 wine

我正在使用 wine 1.6.1 并且想要升级到 1,7,13 但是每次都需要更新:

The following packages have unmet dependencies:
 wine1.7 : Depends: wine1.7-amd64 (= 1:1.7.13-0ubuntu1~ubuntu13.10.1) but it is not going to be installed
           Depends: wine1.7-i386 (= 1:1.7.13-0ubuntu1~ubuntu13.10.1)
E: Unable to correct problems, you have held broken packages.

有人能帮帮我吗?我正在使用 ubuntu 13.10。

答案1

尝试添加官方的 wine 存储库

在终端中运行以下命令

sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update

安装 Wine 1.7

警告:这是测试版本

sudo apt-get install wine1.7

安装 Wine 1.6

sudo apt-get install wine1.7

或者,

要获取最新的 Wine 1.7 测试版,请从浏览器中访问此网址apt://wine1.7

要安装较旧、稳定的 Wine 1.6 版本,请在浏览器中访问此 URLapt://wine1.6

更多参考

答案2

首先尝试安装 i386 依赖项“wine1.7-i386”:

sudo apt-get update
sudo apt-get install wine1.7-i386

如果成功,则安装 wine1.7:

sudo apt-get install wine1.7

相关内容