pdp-config command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pdp-config: command not found
or when using sudo you get the following error message
sudo: pdp-config: command not found
Solutions to pdp-config: command not found
How To Fix pdp-config: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pdp-config is provided by pd-pdp package.
pd-pdp is:
PDP is an extension library for Pd that allows you to manipulate movies and live video data in realtime. PDP stands for Pd Packet, the data container that is used for images in PDP.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pd-pdp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pd-pdp.
sudo apt -y install pd-pdp
Or if you have aptitude installed you can use the following command.
sudo aptitude install pd-pdp
Summary
In this tutorial we learn how to fix pdp-config command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.