qubecalib is a Python library for quantum control experiments using QuBE/QuEL.
- Python 3.9+
You can install qubecalib with the following steps.
Confirm that Python 3.9 or later is installed.
python --version
If not, install an appropriate Python version using pyenv or other tools.
Create a dedicated virtual environment using venv.
# Move to your workspace
cd YOUR_WORKSPACE
# Create a virtual environment named .venv
python -m venv .venv
# Activate the virtual environment
source .venv/bin/activate
Install qubecalib from the GitHub repository using pip.
pip install git+https://github.com/qiqb-osaka/qube-calib.git
To install a specific version (x.y.z), run the following command.
pip install git+https://github.com/qiqb-osaka/qube-calib.git@x.y.z
Check available versions on the release page.
QubeServer.py
has been moved to the qube-server repository.