1

I need an easy explanation because I am very new to Linux and I want to use an app that makes use of qt5 as requested by their website.

Pizza
  • 1,388
  • 3
  • 15
  • 27
Die Kid
  • 11
  • 1
  • 2

1 Answers1

1

This would be a one-liner in Terminal, but let's make sure you're updating apt first:

  1. Update apt:
    sudo apt update
    
  2. Install qt5:
    sudo apt install qt5-default
    
  3. There is no step 3

That should do it for you

  • 2
    Sometimes `sudo apt-add-repository universe` is needed to enable *universe* [pocket](https://packages.ubuntu.com/search?suite=all&searchon=names&keywords=qt5-default). – N0rbert Mar 02 '21 at 20:28