searpc-codegen command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
searpc-codegen: command not found
or when using sudo you get the following error message
sudo: searpc-codegen: command not found
Solutions to searpc-codegen: command not found
How To Fix searpc-codegen: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu searpc-codegen is provided by libsearpc-dev package.
libsearpc-dev is:
Searpc handles the serialization/deserialization part of RPC, the transport part is left to users.
This package contains the development files for Searpc.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libsearpc-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libsearpc-dev.
sudo apt -y install libsearpc-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libsearpc-dev
Summary
In this tutorial we learn how to fix searpc-codegen command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.