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
Before starting, make sure that Storm and stormpy are installed. If not, see the [documentation](https://moves-rwth.github.io/stormpy/installation.html) for details on how to install stormpy.
8
8
9
9
First, install the Python package. If you use a virtual environment, make sure to use it.
10
10
To install the starter package, execute
11
11
```
12
-
python setup.py develop
12
+
pip install .
13
13
```
14
14
15
15
Then, run the script using
@@ -27,17 +27,17 @@ The answer should be yes.
27
27
## Try out in browser via Jupyterlab
28
28
You can also try out the starter project in your browser by using Jupyterlab.
29
29
30
-
You can use this [Binder link](https://mybinder.org/v2/gh/moves-rwth/storm-project-starter-python/master?filepath=stormpy_starter.ipynb) which starts an interactive Jupyter notebook.
30
+
You can use this [Binder link](https://mybinder.org/v2/gh/stormchecker/storm-project-starter-python/master?filepath=stormpy_starter.ipynb) which starts an interactive Jupyter notebook.
31
31
32
32
### Running Jupyter locally.
33
33
You can also start the Jupyterlab locally using [Docker](https://www.docker.com/).
34
34
First, build the Docker container with
35
35
```
36
-
docker build -t movesrwth/stormpy-starter .
36
+
docker build -t stormchecker/stormpy-starter .
37
37
```
38
38
Then start the Docker container with the following command:
0 commit comments