Qt.labs.platform version not installable #717
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Device: Raspberry Pi 400
OS: TwisterOS 2.1.2
Arch: armhf (64-bit not enabled)
Installed with: Pi Apps
Unable to run because:
The latest version of this package is installed
+1. Have the same here on UbuntuUbuntu 22.04 LTS. Please help to resolve the issue.
I also have the same issue. I've been using the built in package manager to try to find the right thing to download, but nothing has worked so far.
Me too... Any ideas?
Nah, I'm just using Hyper instead. The author will hopefully get this issue fixed one of these days.
Hopefully it is fixed, I'm excited to use this.
On Fri, Jun 10, 2022 at 4:56 PM Patrick Mayer @.***>
wrote:
--
Sent from Arbiter's iPhone SE
Installing qml-module-qt-labs-platform worked for me.
sudo apt install qml-module-qt-labs-platform
Hope it helps. cheers.
Thanks so much, man! I'll try that when I'm at my pi!
Unfortunately does not so in my case.
after
sudo apt install qml-module-qt-labs-platform
the system replyes ..
-- snip --
qml-module-qt-labs-platform ist schon die neueste Version (5.11.3+dfsg-2).
Die folgenden Pakete wurden automatisch installiert und werden nicht mehr benötigt:
liblzo2-2 squashfs-tools
Verwenden Sie »sudo apt autoremove«, um sie zu entfernen.
0 aktualisiert, 0 neu installiert, 0 zu entfernen und 0 nicht aktualisiert.
-- snip --
means 'already installed.
I got it working on Debian by installing
qml-module-qt-labs-platform
, doinggit clean -dxf && git pull && git submodule update
to ensure I had exactly the latest code, then rebuilding from scratch withqmake && make
.Keeping this thread alive as I finally managed to resolve this error on my Raspberry install after finding lots of people with the same error but still no fix. So, if you've followed all the previous steps and you're still seeing the version 1.1 is not installed error:
qrc:/menus/OSXMenu.qml:22 module "Qt.labs.platform" version 1.1 is not installed
..then simply change the version number that you build cool-retro-term with!
Solution:
You should then find the "OSXMenu.qml" file mentioned in the error message.
Open the OSXMenu.qml in a text editor
Change line 22:
import Qt.labs.platform 1.1
to...
import Qt.labs.platform 1.0
Save the file
qmake && make
Hope it works for you as it did for me!