cherryd3 command not found

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

Introduction

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

cherryd3: command not found

or when using sudo you get the following error message

sudo: cherryd3: command not found

Solutions to cherryd3: command not found

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

In Ubuntu cherryd3 is provided by python3-cherrypy3 package.

python3-cherrypy3 is:

CherryPy is a pythonic, object-oriented web development framework. It provides the foundation over which complex web-based applications can be written, with little or no knowledge of the underlying protocols. CherryPy allows developers to build web applications in much the same way they would build any other object-oriented Python program. This usually results in smaller source code developed in less time.

CherryPy is up-to-date with the latest developments on using Python for web development: it features a bundled WSGI server, and is able to integrate with other dispatching mechanisms, such as Routes. CherryPy can be run as a standalone application, since it provides its own HTTP server; setting it up behind another HTTP server, such as Apache, or even with mod_python are also options.

This package contains the Python 3 module cherrypy.

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

sudo apt-get -y install python3-cherrypy3

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

You can also use apt command to install python3-cherrypy3.

sudo apt -y install python3-cherrypy3

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

sudo aptitude install python3-cherrypy3

Summary

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