How To Install Latest Version of WINE on Ubuntu 23.04

Published: 02 July 2023
on channel: CodingBite
2,544
25

There are various ways to install Wine on your system. Almost all the Linux distros come with Wine in their package repository.

Most of the time, the latest stable version of Wine is available via the package repository.

Install WINE from Ubuntu’s repository (easy but may not be the latest version)
Install WINE from Wine’s repository (slightly more complicated but gives the latest version)


Method 1. Install WINE from Ubuntu (easy)
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install wine

Method 2: Install the latest version from Wine’s repository
sudo dpkg --add-architecture i386
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/win...
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubu...
sudo apt install --install-recommends winehq-stable

#linux #linuxdistro #ubuntu #wine #windows