Usage with VS Code Web

It is possible to user Quantag Studio directly from web browser.

Go to https://cloud.quantag-it.com and perform authentication with Google account

Screenshot 1

You will be logged in to home page where you can manage workplaces, see profile information and jobs status.

Create new workplace by pressing “Add New Workspace”

Screenshot 2

Enter name for new workspace

Screenshot 3

After creation workspace will be shown on home page

Screenshot 4

To delete workspace - move mouse over its button. Trash icon will be shown. USe it carefully.

Screenshot 5

To open workplace click on its button

Screenshot 6

Press “Yes, I trust the authors”

You will see usual VS Code pretty similar to desktop version. In your workspace you will see sample code for different frameworks.

Separate virtual python environment created in every workspace.

Before running python code you will need in install required packages

If you will try to Debug or Run python circuit which uses qiskit, you will see error like that:

Screenshot 7

To install required python packages open Terminal Tab:

Screenshot 8

First of all you have to activate virtual environment with command “. .venv/bin/activate”

Screenshot 9

After activtion you should see (.venv) in front of command line prompt

Screenshot 10

More information about virtual environments: https://docs.python.org/3/library/venv.html

Now you can install required packages. For example recommended minial set is “pip install qiskit matplotlib pylatexenc”

Screenshot 11

After that you will be able to debug and run python scripts and see disassembled OpenQASM code in Disassembly view

Screenshot 12