qt-qconf command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
qt-qconf: command not found
or when using sudo you get the following error message
sudo: qt-qconf: command not found
Solutions to qt-qconf: command not found
How To Fix qt-qconf: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu qt-qconf is provided by qconf package.
qconf is:
It is intended for developers who don’t need (or want) to use the more complex GNU autotools. With qconf/qmake, it is easy to maintain a cross-platform project that uses a familiar configuration interface on *nix.
Qt 4.x and Qt 5.x are currently supported.
To fix this problem, we can install more using the command below.
sudo apt-get -y install qconf
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install qconf.
sudo apt -y install qconf
Or if you have aptitude installed you can use the following command.
sudo aptitude install qconf
Summary
In this tutorial we learn how to fix qt-qconf command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.