produce command not found

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

Introduction

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

produce: command not found

or when using sudo you get the following error message

sudo: produce: command not found

Solutions to produce: command not found

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

In Ubuntu produce is provided by kickoff package.

kickoff is:

A generalized framework for producing data from and about sources and installables in the Debian archive.

The components communicate data via the JSON and Protocol Buffer formats over fast and versatile ZeroMQ sockets.

These programs generate the data behind lintian.debian.org.

Configurable via YAML files.

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

sudo apt-get -y install kickoff

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

You can also use apt command to install kickoff.

sudo apt -y install kickoff

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

sudo aptitude install kickoff

Summary

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