How to install two versions(5.15.2 & 6.8.3) under same parent directory
-
Hello,
We would like install Qt versions 5.15.2 & 6.8.3 both on Linux machine.
Please let us know how to install both versions under same parent directory(example: /opt/Qt/)FYI..
We have installed both qt versions manually by following the below steps:Install aqtinstall
python3 -m pip install aqtinstall
Install Qt 5.15.2
aqt install-qt linux desktop 5.15.2 gcc_64 -O ~/Qt
Install Qt 6.8.3
aqt install-qt linux desktop 6.8.3 linux_gcc_64 -O ~/Qt
Verify installations
~/Qt/5.15.2/gcc_64/bin/qmake --version
~/Qt/6.8.3/gcc_64/bin/qmake --versionHowever, We missed these packages(Qtmultimedia, WrapVulkanHeaders) with this installation.
Please suggest correct approach to install both versions.
Thank you.
-
Hi and welcome to devnet,
From a quick look at the tool the
-m
parameter is what you are looking for the Qt module. As for the WrapVulkanHeaders, you need to install the Vulkan SDK for it to work.