make_method command not found

In this troubleshooting guide we learn how to fix make_method command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

make_method: command not found

or when using sudo you get the following error message

sudo: make_method: command not found

Solutions to make_method: command not found

How To Fix make_method: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu make_method is provided by librpc-xml-perl package.

librpc-xml-perl is:

RPC::XML is a Perl module that implements the XML-RPC protocol. It provides classes for sample client and server implementations, a server designed as an Apache location-handler, and a suite of data-manipulation classes that are used by them.

To fix this problem, we can install more using the command below.

sudo apt-get -y install librpc-xml-perl

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install librpc-xml-perl.

sudo apt -y install librpc-xml-perl

Or if you have aptitude installed you can use the following command.

sudo aptitude install librpc-xml-perl

Summary

In this tutorial we learn how to fix make_method command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.