You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Flow of actions while using QiskitFlow is following:
31
28
-[Install](#installation) QiskitFlow if not installed yet
32
29
-[Annotate](#code-annotation) your code with `Experiment` abstraction QiskitFlow library provides
@@ -41,10 +38,24 @@ Flow of actions while using QiskitFlow is following:
41
38
42
39
### Installation
43
40
41
+
In order to install qiskitflow locally you need to follow 2 step process:
42
+
- install python library for code annopatation and cli
43
+
- run docker containers for backend server, ui and database
44
+
45
+
To install qiskitflow library and CLI simply run
44
46
```shell script
45
47
pip install qiskitflow
46
48
```
47
49
50
+
In order to run containers with required services we suggest to use docker-compose. But by no means we restrict you to deploy qiskitflow to any container aware environment. At the end of the day all required services are just docker images.
51
+
1. Copy [./docker-compose.yaml](docker-compose.yaml file) to your machine
52
+
2. Run `docker-compose up` in a folder where you saved compose file. In a few moments you should see logs from server, ui and database.
53
+
54
+
55
+
> NOTE: in order to share experiments you need to have backend server up and running.
56
+
57
+
> NOTE: username and password for local server is `admin`
58
+
48
59
49
60
### Code annotation
50
61
@@ -187,17 +198,6 @@ Experiment information
187
198
[Jupyter notebook with quantum teleportation example](https://github.com/IceKhan13/QiskitFlow/blob/master/docs/examples/example.ipynb)
188
199
189
200
190
-
### Run local
191
-
192
-
0. Install `docker compose`
193
-
1. Run
194
-
```shell script
195
-
docker-compose up
196
-
```
197
-
198
-
Note: username and password for local server is `admin`
0 commit comments