Installation¶
Stable release¶
To install Quantify-Scheduler follow the installation guide of quantify-core.
Update to latest version¶
To update to the latest version
$ pip install --upgrade quantify-scheduler
From sources¶
The sources for quantify-scheduler
can be downloaded from the GitLab repo.
You can clone the public repository:
$ git clone [email protected]:quantify-os/quantify-scheduler.git
$ # or if you prefer to use https:
$ # git clone https://gitlab.com/quantify-os/quantify-scheduler.git/
Once you have a copy of the source, you can install it with:
$ python -m pip install --upgrade .
In order to develop the code locally, the package can be installed in the “editable mode” with the -e
flag:
$ python -m pip install --upgrade -e .
Setting up for local development¶
Contributions are very welcome! To setup a an environment for local development see the instructions in the installation guide of quantify-core. You only need to replace quantify-core
with quantify-scheduler
in the provided commands.
If you need any help reach out to us by creating a new issue.
Jupyter and plotly¶
Quantify-scheduler uses the ploty graphing framework for some components, which can require some additional set-up to run with a Jupyter environment - please see this page for details.