我正在尝试安装wine32。
运行sudo apt install wine32将返回以下输出:
Reading package list... Done
Create dependency tree
Reading status information... Done
Some packages cannot be installed. This may mean that
asked for an impossible situation or, if you are using the distribution
unstable, that some required packages have not yet been created or are
have taken from «Incoming». The following information may help resolve the situation:
The following packages have unmet dependencies:
wine32:i386 : Depends: libwine:i386 (= 4.0-2) but will not install
E: Unable to fix problems, has saved broken packages.我正在使用Huayra5.0,以防有帮助。
发布于 2022-11-20 14:32:36
首先,我是您添加了i386体系结构(dpkg --add-architecture i386)的一个,因为Huayra 5只有一个amd64版本。
正如中国民航局长在评论中所说的那样,wine32不在华拉的回购中。我会尝试从WineHQ的回购安装Wine32。
要做到这一点,首先需要下载并添加WineHQ的存储库密钥。
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key然后下载相应Debian版本的源文件(Huayra 5是基于Debian的。如果您正在使用Debian版本的另一个版本,请使用Debian版本代码名更改buster以供将来参考)
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/buster/winehq-buster.sources一旦完成,您将需要更新包列表:sudo apt update
最后,要安装Wine32,请运行:
sudo apt install --install-recommends wine32https://unix.stackexchange.com/questions/707636
复制相似问题