qprint command not found

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

Introduction

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

qprint: command not found

or when using sudo you get the following error message

sudo: qprint: command not found

Solutions to qprint: command not found

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

In Ubuntu qprint is provided by qprint package.

qprint is:

Qprint is a command-line program that can encode or decode files from/to quoted-printable encoding (RFC1521). It can work with both text and binary data.

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

sudo apt-get -y install qprint

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

You can also use apt command to install qprint.

sudo apt -y install qprint

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

sudo aptitude install qprint

Summary

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