You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
The QML library cannot be installed in an environment where NumPy is not already installed, for example a fresh virtual environment when installing another project which uses QML as a dependency.
Description
The QML library cannot be installed in an environment where NumPy is not already installed, for example a fresh virtual environment when installing another project which uses QML as a dependency.
To reproduce
python3 -m venv venv source venv/bin/activate pip install qmlIf NumPy is installed beforehand, then it works
python3 -m venv venv source venv/bin/activate pip install numpy pip install qmlHow to fix
NumPy should be specified as a dependency in the setup configuration.