{"library":"pyqt6-qt6","title":"PyQt6 Qt6 Core Components","description":"This package provides the core Qt6 shared libraries (DLLs/SOs) compiled for Python, which are a fundamental dependency for the PyQt6 bindings. It does not contain any Python API for direct use, but rather the underlying C++ runtime components. It is typically installed automatically as a dependency of the `PyQt6` package. The current version is 6.11.0, and it generally follows the release schedule of the main PyQt6 library and the underlying Qt framework.","language":"python","status":"active","last_verified":"Thu Apr 09","install":{"commands":["pip install pyqt6-qt6","pip install PyQt6"],"cli":null},"imports":[],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import sys\nfrom PyQt6.QtWidgets import QApplication, QLabel, QWidget, QVBoxLayout\n\n# Note: pyqt6-qt6 provides the underlying Qt6 C++ libraries for PyQt6 to use.\n# You do not import directly from pyqt6-qt6 in your Python code.\n\nif __name__ == '__main__':\n    app = QApplication(sys.argv)\n\n    window = QWidget()\n    window.setWindowTitle('PyQt6 with pyqt6-qt6 runtime')\n\n    layout = QVBoxLayout()\n    label = QLabel('Hello from PyQt6!')\n    layout.addWidget(label)\n\n    window.setLayout(layout)\n    window.show()\n\n    sys.exit(app.exec())","lang":"python","description":"This quickstart demonstrates a basic PyQt6 application. The `pyqt6-qt6` package provides the necessary underlying Qt6 C++ runtime libraries that `PyQt6` (which handles the Python bindings) uses to function. You do not directly import or interact with `pyqt6-qt6` from your Python code; its presence as a dependency is sufficient for PyQt6 applications to run.","tag":null,"tag_description":null,"last_tested":"2026-04-24","results":[{"runtime":"python:3.10-alpine","exit_code":1},{"runtime":"python:3.10-slim","exit_code":1},{"runtime":"python:3.11-alpine","exit_code":1},{"runtime":"python:3.11-slim","exit_code":1},{"runtime":"python:3.12-alpine","exit_code":1},{"runtime":"python:3.12-slim","exit_code":1},{"runtime":"python:3.13-alpine","exit_code":1},{"runtime":"python:3.13-slim","exit_code":1},{"runtime":"python:3.9-alpine","exit_code":1},{"runtime":"python:3.9-slim","exit_code":1}]},"compatibility":null}