winemaker-development command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
winemaker-development: command not found
or when using sudo you get the following error message
sudo: winemaker-development: command not found
Solutions to winemaker-development: command not found
How To Fix winemaker-development: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu winemaker-development is provided by wine64-development-tools package.
wine64-development-tools is:
Wine is a free MS-Windows API implementation.
This package provides Wine’s 64-bit developer tools. They are capable of generating both 32- and 64-bit results.
To fix this problem, we can install more using the command below.
sudo apt-get -y install wine64-development-tools
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install wine64-development-tools.
sudo apt -y install wine64-development-tools
Or if you have aptitude installed you can use the following command.
sudo aptitude install wine64-development-tools
Summary
In this tutorial we learn how to fix winemaker-development command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.