clpeak command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
clpeak: command not found
or when using sudo you get the following error message
sudo: clpeak: command not found
Solutions to clpeak: command not found
How To Fix clpeak: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu clpeak is provided by clpeak package.
clpeak is:
Clpeak is a synthetic benchmarking tool to measure peak capabilities of opencl devices. It only measures the peak metrics that can be achieved using vector operations and does not represent a real-world use case
To fix this problem, we can install more using the command below.
sudo apt-get -y install clpeak
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install clpeak.
sudo apt -y install clpeak
Or if you have aptitude installed you can use the following command.
sudo aptitude install clpeak
Summary
In this tutorial we learn how to fix clpeak command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.