junitparser command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
junitparser: command not found
or when using sudo you get the following error message
sudo: junitparser: command not found
Solutions to junitparser: command not found
How To Fix junitparser: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu junitparser is provided by junitparser package.
junitparser is:
junitparser is a JUnit/xUnit result XML Parser. Use it to parse and manipulate existing Result XML files, or create new JUnit/xUnit result XMLs from scratch.
The command line tool can merge several Result XML files to one file.
To fix this problem, we can install more using the command below.
sudo apt-get -y install junitparser
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install junitparser.
sudo apt -y install junitparser
Or if you have aptitude installed you can use the following command.
sudo aptitude install junitparser
Summary
In this tutorial we learn how to fix junitparser command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.