Index: simulator.py =================================================================== diff -u -r5a49d1f14c8b245c24397e86954db17a4144f897 -rafa5cdb5a32798626411f553b9def49f44ff4bf1 --- simulator.py (.../simulator.py) (revision 5a49d1f14c8b245c24397e86954db17a4144f897) +++ simulator.py (.../simulator.py) (revision afa5cdb5a32798626411f553b9def49f44ff4bf1) @@ -6,11 +6,11 @@ print("\nStarting the simulator...") import sys -from PySide2 import QtCore, QtWidgets +from PySide6 import QtCore, QtWidgets from engine.engine import Engine # https://pyinstaller.org/en/stable/spec-files.html -# https://www.pythonguis.com/tutorials/packaging-pyside2-applications-windows-pyinstaller/ +# https://www.pythonguis.com/tutorials/packaging-PySide6-applications-windows-pyinstaller/ # https://forum.qt.io/topic/148718/qt-qpa-plugin-could-not-load-the-qt-platform-plugin-xcb-in-even-though-it-was-found def main(): @@ -26,7 +26,7 @@ engine.show() # start qt application main loop - sys.exit(app.exec_()) + sys.exit(app.exec()) if __name__ == "__main__":