pdd command not found

In this troubleshooting guide we learn how to fix pdd command not found error message

Introduction

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

pdd: command not found

or when using sudo you get the following error message

sudo: pdd: command not found

Solutions to pdd: command not found

How To Fix pdd: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu pdd is provided by pdd package.

pdd is:

pdd (python3 date diff) is a small cmdline utility to calculate date and time difference. If no program arguments are specified it shows the current date, time and timezone.

Feature

  • calculate date difference
  • calculate time difference
  • calculate diff from today and now
  • add, subtract duration (timeslice) to/from date (time)
  • show current date, time and timezone
  • minimal dependencies

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

sudo apt-get -y install pdd

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

You can also use apt command to install pdd.

sudo apt -y install pdd

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

sudo aptitude install pdd

Summary

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