ruby-benchmark-suite command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ruby-benchmark-suite: command not found
or when using sudo you get the following error message
sudo: ruby-benchmark-suite: command not found
Solutions to ruby-benchmark-suite: command not found
How To Fix ruby-benchmark-suite: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ruby-benchmark-suite is provided by ruby-benchmark-suite package.
ruby-benchmark-suite is:
This package contains a command line tool for running multiple benchmarks against multiple rubies.
It is also uses benchmark/ips to report iterations per second.
To fix this problem, we can install more using the command below.
sudo apt-get -y install ruby-benchmark-suite
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install ruby-benchmark-suite.
sudo apt -y install ruby-benchmark-suite
Or if you have aptitude installed you can use the following command.
sudo aptitude install ruby-benchmark-suite
Summary
In this tutorial we learn how to fix ruby-benchmark-suite command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.