Ubuntu – Cannot install Qt-4 on Ubuntu 20.04 – Quite Universal Circuit Simulator (QUCS)

qtqt4

System: Kubuntu-64-bit 20.04 – AMD 64-bit machine
I`m trying to install Quite Universal Circuit Simulator from source code and get error:

configure: error: Qt >= 4.6.0 is required.
configure: error: ./configure failed for qucs

Try to install Qt-4 get error:

apt-get install qt4-dev-tools libqt4-dev libqt4-core libqt4-gui
E: Unable to locate package qt4-dev-tools
E: Package 'libqt4-dev' has no installation candidate
E: Unable to locate package libqt4-core
E: Unable to locate package libqt4-gui

How do I get this work?

Best Answer

Although @kyodake answer is correct, there are good news:

  1. Nice developers are working on Qt5 port in the main site;

  2. I have concocted an AppImage version (alas, without manuals and probably not the besto configured one, but it works) here: https://rmano.github.io/qucsAppImagesBuild/

You can just download the AppImage, make it executable with chmod +x, and run it.

enter image description here

Related Question