如何解决安装wine32时未满足的依赖关系问题?

如何解决安装wine32时未满足的依赖关系问题?

显示我的 Wine 的版本信息:

wine --version
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32"
wine-1.8.7 (Debian 1.8.7-2)

根据信息安装wine32。

sudo apt-get install -y wine32
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:
 wine32:i386 : Depends: libwine:i386 (= 1.8.7-2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

安装 libwine:i386 时显示更多未满足的依赖项:

sudo apt install -y libwine:i386
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:
 libwine:i386 : Depends: libglu1-mesa:i386 but it is not going to be installed or
                         libglu1:i386
                Recommends: libgl1-mesa-glx:i386 but it is not going to be installed or
                            libgl1:i386
                Recommends: libgl1-mesa-dri:i386 but it is not going to be installed
                Recommends: libasound2-plugins:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

尝试使用f参数安装。

sudo apt-get -f install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.

是否安装所有依赖项?

wine --version
it looks like wine32 is missing, you should install it.
as root, please execute "apt-get install wine32"
wine-1.8.7 (Debian 1.8.7-2)

相关内容