Quick Start
Setting up QURI SDK requires Python 3.10 or later.
We recommend using a virtual environment for the installation.
$ python -m .venv
$ source .venv/bin/activate
The first step is to install QURI Algo and QURI VM. Since they are available on the PyPI, installing them is as easy as doing
(.venv)$ python -m pip install quri-algo quri-vm
Additionally, consider installing some of the QURI Parts extras that interface with other open-source libraries.
# Use Qiskit
(.venv)$ python -m pip install "quri-parts[qiskit]"
# Use Amazon Braket SDK
(.venv)$ python -m pip install "quri-parts[braket]"
The full list of extras is as follows, though some of them are already installed as depedencies of QURI Algo and QURI VM.
qulacs
braket
qiskit
cirq
openfermion
stim
openqasm
quantinuum
ionq
itensor
pyscf
tket
You can also checkout the QURI Parts repository and install from the local source tree to get the latest features. You can do so using the requirements-local.txt
file, which can be edited to enable specific features.
After the installation, you can move on to Tutorials.