How to install wine on ubuntu 17.10?

im trying to install wine so i can play fortnight but when i do sudo apt-get install --install-recommends wine-staging i get an error that says wine-staging: depends: wine-staging-amd64 (=2.21.0~trusty) but is not going to be installed depends: wine-staging-i386 (=2.21.0~trusty) E: unable to correct problems

3 Answers

These commands worked for me on a clean 17.10 install.

Based on your error, did you perhaps forget to do the sudo dpkg --add-architecture i386?

  1. sudo dpkg --add-architecture i386
  2. wget && sudo apt-key add Release.key
  3. sudo apt update && sudo apt install winehq-stable

See this article for details.

2

I had to install the following dependencies for Wine to work on Ubuntu 17.10:

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

Because my computer is 64-bit it didn't have the 32 bit/ i386 packages installed.

1

Try these commands:

sudo dpkg --add-architecture i386
sudo apt-add-repository '
wget && sudo apt-key add Release.key
sudo apt update && sudo apt install winehq-stable

You Might Also Like