how to install the latest wine

tuvia5761
  6 years ago
  -1

If your system is 64 bit, enable 32 bit architecture (if you haven't already):

sudo dpkg --add-architecture i386 

Add the repository:

wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main'

Update packages:

sudo apt-get update

Then install one of the following packages:

Stable branch
    sudo apt-get install --install-recommends winehq-stable
Development branch
    sudo apt-get install --install-recommends winehq-devel
Staging branch
    sudo apt-get install --install-recommends winehq-staging
this will install the latest release of wine

 

Comments
remoulder 6 years ago

This is just copied from the instructions on winehq and a link to the original page would be better