pj_gantt command not found

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

Introduction

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

pj_gantt: command not found

or when using sudo you get the following error message

sudo: pj_gantt: command not found

Solutions to pj_gantt: command not found

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

In Ubuntu pj_gantt is provided by pajeng package.

pajeng is:

PajeNG (Paje Next Generation) is a re-implementation (in C++) and direct heir of the well-known Paje visualization tool for the analysis of execution traces (in the Paje File Format) through trace visualization (space/time view). Auxiliary tools are also available to dump to CSV and display gantt charts out of Paje trace files.

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

sudo apt-get -y install pajeng

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

You can also use apt command to install pajeng.

sudo apt -y install pajeng

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

sudo aptitude install pajeng

Summary

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