wsdl2perl command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
wsdl2perl: command not found
or when using sudo you get the following error message
sudo: wsdl2perl: command not found
Solutions to wsdl2perl: command not found
How To Fix wsdl2perl: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu wsdl2perl is provided by libsoap-wsdl-perl package.
libsoap-wsdl-perl is:
SOAP::WSDL provides easy access to Web Services with WSDL descriptions.
The WSDL is parsed and stored in memory. Your data is serialized according to the rules in the WSDL. The only transport mechanisms currently supported are http and https.
To fix this problem, we can install more using the command below.
sudo apt-get -y install libsoap-wsdl-perl
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libsoap-wsdl-perl.
sudo apt -y install libsoap-wsdl-perl
Or if you have aptitude installed you can use the following command.
sudo aptitude install libsoap-wsdl-perl
Summary
In this tutorial we learn how to fix wsdl2perl command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.