Install
Install from PyPI
Section titled “Install from PyPI”QoolQit can be installed from PyPI with your favorite pyproject-compatible Python manager.
Using pip, for example:
pip install qoolqitAdd QoolQit as a dependency
Section titled “Add QoolQit as a dependency”For usage within a project with a corresponding pyproject.toml file, you can add
qoolqit to the list of dependencies as follows:
[project]dependencies = [ "qoolqit"]Install from source
Section titled “Install from source”If you are developing code for QoolQit, you can install it directly from source:
1) Clone the QoolQit GitHub repository (external)
git clone https://github.com/pasqal-io/qoolqit.git2) From your qoolqit folder, create a virtual environment and install the project in editable mode.
Using venv and pip, for example:
python -m venv .venvsource .venv/bin/activatepip install -e .[dev]