0

I'm unable to install wine in ubuntu 16.04.

sudo apt-get install wine

is giving me this error

Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

Please help soon

The following packages have unmet dependencies:
 wine : Depends: wine1.6 but it is not going to be installed or
                 wine1.8 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
sumitroy
  • 165

1 Answers1

0

You need to go one-by-one and install each of these dependencies to see what the problem is:

sudo apt-get update
sudo apt-get install wine1.6-i386
sudo apt-get install wine1.6
sudo apt-get install wine

Please post any errors, thanks.

mchid
  • 44,904
  • 8
  • 102
  • 162