QoolQit is a Python package designed for algorithm development in the Rydberg Analog Model.
For more detailed information, check out the documentation.
QoolQit can be installed from PyPi with pip
as follows
$ pip install qoolqit
# or
$ pipx install qoolqit
If you wish to install directly from the source, for example, if you are developing code for QoolQit, you can:
- Clone the QoolQit GitHub repository
git clone https://github.com/pasqal-io/qoolqit.git
- Setup an environment for developing. We recommend using Hatch. With Hatch installed, you can enter the
qoolqit
repository and run
hatch shell
This will automatically take you into an environment with the necessary dependencies. Alternatively, if you wish to use a different environment manager like conda
or venv
, you can instead enter the qoolqit
repository from within the environment and run
pip install -e .
For usage within a project with a corresponding pyproject.toml
file, you can add
"qoolqit"
to the list of dependencies
.