quickplot command not found

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

Introduction

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

quickplot: command not found

or when using sudo you get the following error message

sudo: quickplot: command not found

Solutions to quickplot: command not found

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

In Ubuntu quickplot is provided by quickplot package.

quickplot is:

A 2-D plotter with infinite zooming, value picking, pipe input, and unlimited plots displayed. Quickplot is meant for looking at your data quickly and of secondary importance is making static pictures of your data. It is a data viewer, not a plot editor. It reads ASCII text and sound files. It has lots of command line options, making it very shell script friendly.

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

sudo apt-get -y install quickplot

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

You can also use apt command to install quickplot.

sudo apt -y install quickplot

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

sudo aptitude install quickplot

Summary

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