Ubuntu – How to install qt3-dev-tools package

13.10aptqt3

I am using Ubuntu 13.10 and want to install qt3-dev-tools package. When i run this command

sudo apt-get install qt3-dev-tools

i am getting this error,

E: Unable to locate package qt3-dev-tools

Please help me.

Best Answer

You may install it from precise repository. I tried this in 14.04, it installs fine but I didn't try building any source using it.

  1. Add precise repository

    echo "deb http://archive.ubuntu.com/ubuntu precise main universe multiverse" | sudo tee /etc/apt/sources.list.d/precise.list
    sudo apt-get update
    
  2. Install qt3-dev-tools

    sudo apt-get install qt3-dev-tools
    
  3. Remove the repository.

    sudo rm /etc/apt/sources.list.d/precise.list
    sudo apt-get update