git-dpm command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
git-dpm: command not found
or when using sudo you get the following error message
sudo: git-dpm: command not found
Solutions to git-dpm: command not found
How To Fix git-dpm: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu git-dpm is provided by git-dpm package.
git-dpm is:
Manage Debian source packages in an git archive, storing possible changes to the upstream source as git commits that are stored in “3.0 (quilt)” format patch series.
To fix this problem, we can install more using the command below.
sudo apt-get -y install git-dpm
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install git-dpm.
sudo apt -y install git-dpm
Or if you have aptitude installed you can use the following command.
sudo aptitude install git-dpm
Summary
In this tutorial we learn how to fix git-dpm command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.