web-dev-qa-db-ja.com

ubuntu 17.10にワインをインストールする方法は?

2週間プレイできるようにワインをインストールしようとしていますが、Sudo apt-get install --install-recommends wine-stagingを実行すると、wine-staging:depends:wine-staging-AMD64(= 2.21.0〜 trusty)がインストールされる予定はありません:wine-staging-i386(= 2.21.0〜trusty)E:問題を修正できません

2
austin rose

これらのコマンドは、クリーンな17.10インストールで機能しました。

エラーに基づいて、おそらくSudo dpkg --add-architecture i386の実行を忘れましたか?

  1. Sudo dpkg --add-architecture i386
  2. wget https://dl.winehq.org/wine-builds/Release.key && Sudo apt-key add Release.key
  3. Sudo apt update && Sudo apt install winehq-stable

詳細については この記事 をご覧ください。

1
Organic Marble

Ubuntu 17.10でWineが動作するには、次の依存関係をインストールする必要がありました。

Sudo apt install libgd3:i386
Sudo apt install libgphoto2-6:i386
Sudo apt install wine-stable
Sudo apt install winehq-stable

私のコンピューターは64ビットなので、32ビット/ i386パッケージはインストールされていません。

0
BaronGrivet

これらのコマンドを試してください:

Sudo dpkg --add-architecture i386
Sudo apt-add-repository 'https://dl.winehq.org/wine-builds/ubuntu/'
wget https://dl.winehq.org/wine-builds/Release.key && Sudo apt-key add Release.key
Sudo apt update && Sudo apt install winehq-stable
0
Omkar Jadhav