tox-delay command not found

In this troubleshooting guide we learn how to fix tox-delay command not found error message

Introduction

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

tox-delay: command not found

or when using sudo you get the following error message

sudo: tox-delay: command not found

Solutions to tox-delay: command not found

How To Fix tox-delay: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu tox-delay is provided by tox-delay package.

tox-delay is:

The tox-delay tool postpones the run of the specified Tox environments after the run of all the others has completed successfully. This may be useful if e.g. there are unit or functional test environments, which it would make no sense to run if the static checkers (pylint, mypy, etc) find problems.

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

sudo apt-get -y install tox-delay

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

You can also use apt command to install tox-delay.

sudo apt -y install tox-delay

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

sudo aptitude install tox-delay

Summary

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