pytest-benchmark command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pytest-benchmark: command not found
or when using sudo you get the following error message
sudo: pytest-benchmark: command not found
Solutions to pytest-benchmark: command not found
How To Fix pytest-benchmark: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pytest-benchmark is provided by pytest-benchmark package.
pytest-benchmark is:
This package provides a command line util for inspecting benchmark data generated by the pytest-benchmark fixture. It allows one to display benchmark data as well as generate histograms or csv exports.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pytest-benchmark
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pytest-benchmark.
sudo apt -y install pytest-benchmark
Or if you have aptitude installed you can use the following command.
sudo aptitude install pytest-benchmark
Summary
In this tutorial we learn how to fix pytest-benchmark command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.