Installation
These installation instructions assume you already have Python installed.
PyPi
To install qtutils from the Python Package Index run:
pip install qtutils
Upgrading qtutils with PyPI
To upgrade to the latest version of qtutils, run:
pip install -U qtutils
To upgrade to a specific version of qtutils (or, alternatively, if you wish to downgrade), run:
pip install -U qtutils==<version>
where <version> is replaced by the version you wish (for example pip install -U qtutils==2.3.2).
conda
To install qtutils using conda run:
conda install -c labscript-suite qtutils
Note
The qtutils library is published on the labscript-suite anaconda cloud channel as it was created by labscript-suite developers for use in that software suite.
Upgrading qtutils with conda
To upgrade to the latest version of qtutils, run:
conda update -c labscript-suite qtutils
To upgrade to a specific version of qtutils (or, alternatively, if you wish to downgrade), run:
conda update -c labscript-suite qtutils=<version>
where <version> is replaced by the version you wish (for example conda update -c labscript-suite qtutils=3.0.0).
Development Version
To install latest development version, clone the GitHub repository and run pip install . to install, or pip install -e . to install in ‘editable’ mode.