wine64-stable command not found

In this troubleshooting guide we learn how to fix wine64-stable command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

wine64-stable: command not found

or when using sudo you get the following error message

sudo: wine64-stable: command not found

Solutions to wine64-stable: command not found

How To Fix wine64-stable: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu wine64-stable is provided by wine64 package.

wine64 is:

Wine is a free MS-Windows API implementation.

This package provides the binary loader for 64-bit Windows applications.

To fix this problem, we can install more using the command below.

sudo apt-get -y install wine64

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install wine64.

sudo apt -y install wine64

Or if you have aptitude installed you can use the following command.

sudo aptitude install wine64

Summary

In this tutorial we learn how to fix wine64-stable command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.