Skip to content
Pasqal Documentation

Installation

To install the latest release of pulser, have Python 3.9 or higher installed, then use pip:

Terminal window
pip install pulser

The standard pulser distribution will install the core pulser package and the pulser_simulation extension package, which is required if you want to access the pulser_simulation features.

If you wish to install only the core pulser features, you can instead run:

Terminal window
pip install pulser-core

For the development version of Pulser, you can install Pulser from source by cloning the Pulser Github repository (external), and entering your freshly created Pulser directory. There, you’ll checkout the develop branch - which holds the development (unstable) version of Pulser - and install from source by running:

Terminal window
git checkout develop
make dev-install

Bear in mind that your installation will track the contents of your local Pulser repository folder, so if you checkout a different branch (e.g. master), your installation will change accordingly.

If you want to install the development requirements, stay inside the same Pulser directory and follow up by running:

Terminal window
pip install -r dev_requirements.txt