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.
pip install pyqt6-qt6No compatibility data collected yet for this library.
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.
Ensure all Python-level imports use `PyQt6.*`.
Always install `PyQt6` directly via `pip install PyQt6` to ensure compatible dependencies, or explicitly match `pyqt6-qt6` version to your `PyQt6` installation if managing them separately.
Test deployments on target OS environments. For cross-platform deployment, ensure separate builds for each OS, as the underlying Qt6 binaries are not universal.
When troubleshooting, ensure that system PATH variables are not inadvertently pointing to other Qt installations. For isolated environments, consider using virtual environments or containerization.
Ensure PyQt6 (and its dependency pyqt6-qt6) is correctly installed in your environment. If deploying an application, ensure the Qt platform plugins (e.g., qwindows.dll, libqxcb.so) are correctly bundled alongside the necessary pyqt6-qt6 components. In development, 'pip install --force-reinstall PyQt6' often resolves it.
Install or reinstall PyQt6 using 'pip install PyQt6'. Ensure the installation completes without errors and that your Python environment (e.g., virtual environment) is correctly activated.
pyqt6-qt6 is an internal dependency. Do not attempt to import it directly. Instead, import modules from the PyQt6 library, such as 'PyQt6.QtWidgets' or 'PyQt6.QtCore'.
Update pip to the latest version ('pip install --upgrade pip'). Verify your Python version and OS are supported by the PyQt6 and pyqt6-qt6 releases. Try installing in a fresh virtual environment, and check for any network or proxy issues.No dependency data recorded yet.