| Summary: | Kajongg can't start from snap | ||
|---|---|---|---|
| Product: | [Applications] kajongg | Reporter: | showfom |
| Component: | general | Assignee: | Scarlett Moore <sgmoore> |
| Status: | ASSIGNED --- | ||
| Severity: | normal | CC: | kde-games-bugs-null, sgmoore, wolfgang |
| Priority: | NOR | ||
| Version First Reported In: | 25.04.0 | ||
| Target Milestone: | --- | ||
| Platform: | Snap | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
seems like snapcraft.yaml is missing a dependency: https://pypi.org/project/QtPy/ Having issues getting pip to build qtpy, tried with both pyside6 and pyqt6. I am guessing because they are qt6.9 and snaps are still at 6.8.3 so this is stuck for now. |
SUMMARY Kajongg can't start, installed from snap STEPS TO REPRODUCE 1. `sudo snap install kajongg` 2. `snap run kajongg` OBSERVED RESULT ``` Traceback (most recent call last): File "/snap/kajongg/52/usr/bin/kajongg", line 18, in <module> from qt import QObject, QCommandLineParser, QCommandLineOption, Qt, QGuiApplication File "/snap/kajongg/52/usr/share/kajongg/qt.py", line 18, in <module> from qtpy import QT6, PYQT6, PYSIDE6 ModuleNotFoundError: No module named 'qtpy' ``` I also tried to run it directly but failed: ``` $ /snap/kajongg/52/usr/bin/kajongg Traceback (most recent call last): File "/snap/kajongg/52/usr/bin/kajongg", line 18, in <module> from qt import QObject, QCommandLineParser, QCommandLineOption, Qt, QGuiApplication ModuleNotFoundError: No module named 'qt' ```