I've been trying to install wine on my ubuntu 18.04 (64 bit) for an hour but couldn't succeed.
I do as all of the tutorials and instructions do it:
sudo dpkg --add-architecture i386
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository 'deb http://dl.winehq.org/wine-builds/ubuntu/ xenial main'
sudo apt-get update
sudo apt-get install --install-recommends winehq-devel
But I always get the following results:
Reading package lists... Done Building dependency tree Reading state information... Done 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: The following packages have unmet dependencies: winehq-devel : Depends: wine-devel (= 3.10.0~xenial) E: Unable to correct problems, you have held broken packages.
This is the instruction in WineHQ and also there is a YouTube video doing the exact same procedure as above and succeeding, what is wrong? How can I install wine properly?
wine32:i386 : Depends: libwine:i386 (= 3.0-1ubuntu1) but it is not going to be installed
and I don't know why but it removes my google-chrome-stable package – Amen Jun 18 '18 at 15:05apt-get install -f
help solve anything? Don't forget you need to remove the other repos, and doapt-get update
before it works. – Thomas Ward Jun 18 '18 at 15:16sudo apt-get remove wine*
ed it out! Then removed the repos, then tried with the original repos and then.... – Amen Jun 18 '18 at 16:12