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
To install scipy-dae package you can run the command
30
+
```
31
+
pip install scipy-dae
32
+
```
33
+
34
+
### Install through git repository
35
+
To install the package through git installation you can download the repository and install it through
36
+
```
37
+
pip install .
38
+
```
39
+
40
+
### Install for developing and testing
41
+
An editable developer mode can be installed via
42
+
43
+
```bash
44
+
python -m pip install -e .[dev]
45
+
```
46
+
47
+
The tests can be started using
48
+
49
+
```bash
50
+
python -m pytest --cov
51
+
```
52
+
27
53
## Basic usage
28
54
29
55
The Robertson problem of semi-stable chemical reaction is a simple system of differential algebraic equations of index 1. It demonstrates the basic usage of the package.
@@ -263,16 +289,4 @@ Starting at $t_0 = 0.5$, this problem is solved for $atol = rtol = 10^{-(4 + m /
0 commit comments