ui-utilcpp-version command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
ui-utilcpp-version: command not found
or when using sudo you get the following error message
sudo: ui-utilcpp-version: command not found
Solutions to ui-utilcpp-version: command not found
How To Fix ui-utilcpp-version: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu ui-utilcpp-version is provided by libui-utilcpp-dev package.
libui-utilcpp-dev is:
A toolbox-like C++ library, with a diverse set of utilities:
- Exception: Generic Exception classes and THROW macros.
- Sys: C++ “exception” wrappers for a wide range of system C functions.
- Cap: Capabilities C++ wrapper.
- CharsetMagic: Charset guessing.
- Recoder: Charset recoding.
- Time: Misc date and time utilities.
- File: Misc file utilities.
- Text: Misc string utilities.
- http/: Minimal HTTP implementiation.
- PosixRegex: Simple wrapper for C ‘regexec’.
- QuotaInfo: Wrapper to fs quota information.
- SMLog[Mono]: Syslog Macro Log.
- Socket: Simple Socket abstraction (inet+unix).
- Thread: Process based pseudo thread abstraction.
- CmdLine: Create CLI-like programs.
- GetOpt: Abstraction of GNU C getopt_long(3).
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-utilcpp-dev
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install libui-utilcpp-dev.
sudo apt -y install libui-utilcpp-dev
Or if you have aptitude installed you can use the following command.
sudo aptitude install libui-utilcpp-dev
Summary
In this tutorial we learn how to fix ui-utilcpp-version command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.