Skip to content
This repository was archived by the owner on Dec 8, 2024. It is now read-only.
This repository was archived by the owner on Dec 8, 2024. It is now read-only.

Installation broken in fresh virtual environments #145

Open
@EdmundGoodman

Description

@EdmundGoodman

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 qml

image

If NumPy is installed beforehand, then it works

python3 -m venv venv
source venv/bin/activate
pip install numpy
pip install qml

image

How to fix

NumPy should be specified as a dependency in the setup configuration.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions