chaussette command not found

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

Introduction

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

chaussette: command not found

or when using sudo you get the following error message

sudo: chaussette: command not found

Solutions to chaussette: command not found

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

In Ubuntu chaussette is provided by chaussette package.

chaussette is:

Chaussette is a WSGI server you can use to run your Python WSGI applications.

The particularity of Chaussette is that it can either bind a socket on a port like any other server does or run against already opened sockets.

That makes Chaussette the best companion to run a WSGI or Django stack under a process and socket manager, such as Circus or Supervisor.

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

sudo apt-get -y install chaussette

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

You can also use apt command to install chaussette.

sudo apt -y install chaussette

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

sudo aptitude install chaussette

Summary

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