> I get the same result without pyqt6. I don't know, support for pyqt5 is still supposed to be around for a good while yet, and it was working yesterday.
Thanks,
Here are the output i get, starting 'classic' Leo in console just gives me "'NoneType' object has no attribute 'gui'"
and trying to start leoserver.py (to use leointeg), the equivalent of creating an instance of leoBridge, gives me:
Error - Cannot start server: stderr: Traceback (most recent call last):
File "/home/felix/leo-editor/leo/core/leoQt.py", line 38, in <module>
from leo.core.leoQt6 import *
File "/home/felix/leo-editor/leo/core/leoQt6.py", line 12, in <module>
from PyQt6 import QtCore, QtGui, QtWidgets
ModuleNotFoundError: No module named 'PyQt6'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/felix/leo-editor/leo/core/leoQt.py", line 51, in <module>
from leo.core.leoQt5 import * # type:ignore
File "/home/felix/leo-editor/leo/core/leoQt5.py", line 14, in <module>
from QtGui import QCloseEvent
ModuleNotFoundError: No module named 'QtGui'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/felix/leo-editor/leo/core/leoserver.py", line 4004, in <module>
main()
File "/home/felix/leo-editor/leo/core/leoserver.py", line 3954, in main
controller = LeoServer() # Single instance of LeoServer, i.e., an instance of leoBridge
File "/home/felix/leo-editor/leo/core/leoserver.py", line 364, in __init__
import leo.core.leoApp as leoApp
File "/home/felix/leo-editor/leo/core/leoApp.py", line 23, in <module>
from leo.core.leoQt import QCloseEvent
File "/home/felix/leo-editor/leo/core/leoQt.py", line 56, in <module>
if g.app.gui.guiName() == 'qt':
AttributeError: 'NoneType' object has no attribute 'gui'
--
Félix