ui-gxmlcpp-version command not found

In this troubleshooting guide we learn how to fix ui-gxmlcpp-version command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

ui-gxmlcpp-version: command not found

or when using sudo you get the following error message

sudo: ui-gxmlcpp-version: command not found

Solutions to ui-gxmlcpp-version: command not found

How To Fix ui-gxmlcpp-version: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu ui-gxmlcpp-version is provided by libui-gxmlcpp-dev package.

libui-gxmlcpp-dev is:

“ui-gxmlcpp” is a high-level C++ wrapper around libxml2 and libxslt. It might be a choice for if your needs are some subset of:

  • XML DOM Tree parsing.
  • Basic read/write support from/to trees via XPath.
  • Serialization.
  • Stylesheets and stylesheet translation support.
  • XMLSchema and RelaxNG validation.

If your needs are “lower-level” (e.g., proper DOM tree API support or SAX parsing), “gdome2” or “xml++” will be the right choices.

This package provides all files needed for development.

To fix this problem, we can install more using the command below.

sudo apt-get -y install libui-gxmlcpp-dev

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install libui-gxmlcpp-dev.

sudo apt -y install libui-gxmlcpp-dev

Or if you have aptitude installed you can use the following command.

sudo aptitude install libui-gxmlcpp-dev

Summary

In this tutorial we learn how to fix ui-gxmlcpp-version command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.