最近从 Windows 转到 Ubuntu。首次使用。
我尝试了论坛中提到的几种安装 wine 的方法。
sudo dpkg --add-architecture i386
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ disco main'
sudo apt-get update
sudo apt install --install-recommends winehq-stable
出现以下错误:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package winehq-stable
有人可以帮忙吗?
答案1
您正在使用代号为埃科安, 不是迪斯科,因此应该改为迪斯科到埃科安在第三个命令中也是如此。winehq-stable 在 19.10 中不可用,因此不要安装 winehq-stable,而是安装 winehq-staging,这是最新的测试 wine 版本。打开终端并输入:
sudo dpkg --add-architecture i386 wget -nc https://dl.winehq.org/wine-builds/winehq.key sudo apt-key 添加 winehq.key sudo apt-add-repository'deb https://dl.winehq.org/wine-builds/ubuntu/埃科安主要的' sudo apt 更新 sudo apt install --install-recommendswinehq 暂存
如果 apt 抱怨缺少依赖项,请安装它们,然后重复最后两个步骤(更新和安装)。
答案2
软件包名称错误。请尝试使用“wine”或“wine1.6”或“wine1.8”。
为 Ubuntu 19.10 安装 WineHQ 软件包
如果您的系统是 64 位,请启用 32 位架构(如果还没有启用):
sudo dpkg --add-architecture i386
下载并添加存储库密钥:
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo apt-key add winehq.key
添加存储库:
Ubuntu 19.10
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ **eoan** main'
更新包:
sudo apt update
然后安装软件包:
稳定分支
sudo apt install --install-recommends winehq-stable
如果包名错误,请尝试“wine”或“wine4.5”或“wine4”
sudo apt install --install-recommends wine-stable