2

I am trying to install qt6 on Ubuntu 22.04. I have found this answer -> How to install Qt6 on Ubuntu 21.10 where it states that package qt6-base-dev is available on 22.04. However, I get Unable to locate package qt6-base-dev when trying to install it

Rad
  • 25

1 Answers1

4

qt6-base-dev is indeed available in 22.04. It is in the Universe repository, so do make sure it is enabled.

...and then:

sudo apt update
sudo apt install qt6-base-dev
mikewhatever
  • 32,638