OpenQP

Direct install

Install OpenQP

The official package name is openqp. Binary wheels are built from OpenQP release tags so users can install without a local compiler when their platform has a published wheel.

pip install openqp
Wheel runtime check
python -c "import oqp, pathlib;
root = pathlib.Path(oqp.oqp_root);
print(root)"
  • Python module: oqp
  • Command: openqp
  • Runtime files bundled in the wheel

Platform status

Choose the path for your machine

Linux Ready

Use PyPI wheels on supported x86_64 Python versions.

pip install openqp
macOS Building

Wheels are planned for Apple Silicon and Intel releases.

pip install openqp
Windows Use WSL2

Use WSL2 or Docker until native Windows wheels are validated.

wsl pip install openqp

Install options

Three supported ways to start

PyPI

Best for Python environments with a matching binary wheel.

python -m pip install openqp

Docker

Best for reproducible Linux runs and Windows users without WSL setup.

docker pull openqp/openqp

Source

Best for developers and platforms without published wheels.

pip install .