pgcharts command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pgcharts: command not found
or when using sudo you get the following error message
sudo: pgcharts: command not found
Solutions to pgcharts: command not found
How To Fix pgcharts: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pgcharts is provided by pgcharts package.
pgcharts is:
pgcharts is a little web application that takes as input an SQL query text and outputs its data in one of the following forms: html table, column chart, bar chart, pie chart, donut chart.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pgcharts
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pgcharts.
sudo apt -y install pgcharts
Or if you have aptitude installed you can use the following command.
sudo aptitude install pgcharts
Summary
In this tutorial we learn how to fix pgcharts command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.