jeprof command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
jeprof: command not found
or when using sudo you get the following error message
sudo: jeprof: command not found
Solutions to jeprof: command not found
How To Fix jeprof: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu jeprof is provided by libjemalloc-dev package.
libjemalloc-dev is:
Files used for development with jemalloc. This package contains headers and documentation.
jemalloc is a library providing a malloc(3) implementation for multi-threaded processes on multi-processor systems.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libjemalloc-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libjemalloc-dev.
sudo apt -y install libjemalloc-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libjemalloc-dev
Summary
In this tutorial we learn how to fix jeprof command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.