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?
sudo dpkg --add-architecture i386wget && sudo apt-key add Release.keysudo apt update && sudo apt install winehq-stable
See this article for details.
2I 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-stableBecause my computer is 64-bit it didn't have the 32 bit/ i386 packages installed.
1Try 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