xalan command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xalan: command not found
or when using sudo you get the following error message
sudo: xalan: command not found
Solutions to xalan: command not found
How To Fix xalan: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xalan is provided by xalan package.
xalan is:
This package provides a command line utility to transform XML documents to other formats using XSLT templates. It uses the Xalan XSLT processing library from the Apache Software Foundation.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xalan
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xalan.
sudo apt -y install xalan
Or if you have aptitude installed you can use the following command.
sudo aptitude install xalan
Summary
In this tutorial we learn how to fix xalan command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.