Installation¶
This page covers how to install the RQM ecosystem packages for development or use.
Prerequisites¶
- Python 3.9 or later
pippackage manager- (Optional) A virtual environment manager such as
venvorconda
Installing from PyPI¶
The packages are published to PyPI and can be installed with pip.
Install both at once:
Installing from GitHub (Editable)¶
For development or to track the latest changes, install directly from GitHub in editable mode:
To install an editable local clone:
Setting Up rqm-notebooks¶
The rqm-notebooks repository contains Jupyter notebooks and does not require a separate package install. Clone the repo and install its dependencies:
git clone https://github.com/RQM-Technologies-dev/rqm-notebooks.git
cd rqm-notebooks
pip install -r requirements.txt
jupyter lab
Recommended Path for New Users¶
If you are new to the ecosystem, install both core packages and then clone the notebooks:
# 1. Create and activate a virtual environment
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# 2. Install the core packages
pip install rqm-core rqm-qiskit
# 3. Clone the notebooks for interactive learning
git clone https://github.com/RQM-Technologies-dev/rqm-notebooks.git
cd rqm-notebooks
pip install -r requirements.txt
jupyter lab
Verifying Your Installation¶
Dependencies
rqm-qiskit depends on rqm-core and will install it automatically if it is not already present. You do not need to install both separately unless you want only the math layer.