xmlcopyeditor command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
xmlcopyeditor: command not found
or when using sudo you get the following error message
sudo: xmlcopyeditor: command not found
Solutions to xmlcopyeditor: command not found
How To Fix xmlcopyeditor: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu xmlcopyeditor is provided by xmlcopyeditor package.
xmlcopyeditor is:
XML Copy Editor is an XML editor focusing on editing document markup languages like DITA, DocBook, WordprocessingML. It features DTD/XML Schema/RELAX NG validation, XSLT, XPath, pretty-printing, syntax highlighting, folding, tag completion/locking, and a spelling/style check.
To fix this problem, we can install more using the command below.
sudo apt-get -y install xmlcopyeditor
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install xmlcopyeditor.
sudo apt -y install xmlcopyeditor
Or if you have aptitude installed you can use the following command.
sudo aptitude install xmlcopyeditor
Summary
In this tutorial we learn how to fix xmlcopyeditor command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.