dh-make-golang command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
dh-make-golang: command not found
or when using sudo you get the following error message
sudo: dh-make-golang: command not found
Solutions to dh-make-golang: command not found
How To Fix dh-make-golang: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu dh-make-golang is provided by dh-make-golang package.
dh-make-golang is:
dh-make-golang is a tool to automatically create Debian packaging for Go packages. Its goal is to automate away as much of the work as possible when creating a Debian package for a Go library package.
To fix this problem, we can install more using the command below.
sudo apt-get -y install dh-make-golang
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install dh-make-golang.
sudo apt -y install dh-make-golang
Or if you have aptitude installed you can use the following command.
sudo aptitude install dh-make-golang
Summary
In this tutorial we learn how to fix dh-make-golang command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.