xsltproc command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xsltproc: command not found
or when using sudo you get the following error message
sudo: xsltproc: command not found
Solutions to xsltproc: command not found
How To Fix xsltproc: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xsltproc is provided by xsltproc package.
xsltproc is:
XSLT is an XML language for defining transformations of XML files from XML to some other arbitrary format, such as XML, HTML, plain text, etc. using standard XSLT version 1.0 stylesheets.
This package contains a command line tool that facilitates XSLT transformations.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xsltproc
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xsltproc.
sudo apt -y install xsltproc
Or if you have aptitude installed you can use the following command.
sudo aptitude install xsltproc
Summary
In this tutorial we learn how to fix xsltproc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.