Can not install wine64 in linux? [duplicate]

enter image description here

Please explain how I can install wine64

2

1 Answer

There is no longer a package called wine64 in the Ubuntu Repositories.

You can install a 64bit version of Wine like this:

sudo apt-get update sudo apt-get upgrade sudo apt-get install wine1.6-amd64 

Be aware that there are many caveats with 64bit Wine. There are also a ton of bugs.

If you want the latest builds, you can install the WineHQ PPA:

sudo add-apt-repository ppa:wine/wine-builds 
1

You Might Also Like