0

Please refer to this link How to install Qt version 4.8.1 in Kubuntu 14.04.

I have run

./configure
make
sudo make install

Where is .deb file created after run the command sudo make install in qt 4.8 installation process so that I can complete my QT 4.8 installation? I am using Ubuntu Mate OS.

I can't understand these three lines as below in the above link:

  1. This will make a .deb of the source you can install as a normal application via apt
  2. sudo dpkg -i path/to/output.deb
  3. Change path/to/output.deb to the path of the created .deb file.

I can't find the "path/to/output.deb" of created .deb file.

Please help...

Zanna
  • 72,312
Mehta
  • 95
  • 7

1 Answers1

2

It's not necessary to compile Qt4 from source because Qt 4.8 is provided by the qt4-default package in all currently supported versions of Ubuntu. To install it open the terminal and type:

sudo apt install qt4-default  

After you have installed qt4-default you can run the following command to list other available Qt4 packages:

apt search qt4-*
karel
  • 122,292
  • 133
  • 301
  • 332