ubuntu20.04 install wine
时间: 2023-06-28 18:11:13 浏览: 137
To install Wine on Ubuntu 20.04, follow these steps:
1. Open the terminal by pressing `Ctrl+Alt+T` on your keyboard.
2. Add the WineHQ repository by typing the following command and pressing Enter:
```
sudo apt install software-properties-common
sudo add-apt-repository ppa:ubuntu-wine/ppa
```
3. Update the package list with the command:
```
sudo apt update
```
4. Install Wine by running the command:
```
sudo apt install wine
```
This will install the latest stable version of Wine on your system.
5. After the installation is complete, you can verify that it's installed correctly by typing the command:
```
wine --version
```
This will display the version of Wine that is installed on your system.
That's it! You have successfully installed Wine on Ubuntu 20.04.
阅读全文