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
Copy file name to clipboardExpand all lines: README.md
+15
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,21 @@ Generated models can be used with solvers throughout the broader Julia and
30
30
for sensitivity analysis, parameter estimation, machine learning applications,
31
31
etc).
32
32
33
+
## Installation
34
+
Catalyst can be installed as follows. Please note, we suggest only installing ModelingToolkit versions 9.59 and earlier for use with Catalyst at this time as changes in ModelingToolkit as of version 9.60 can break various Catalyst functionality.
35
+
```julia
36
+
using Pkg
37
+
38
+
# (optional but recommended) create new environment in which to install Catalyst
39
+
Pkg.activate("catalyst_environment")
40
+
41
+
# install ModelingToolkit 9.59
42
+
Pkg.add(; name ="ModelingToolkit", version ="9.59")
43
+
44
+
# install latest Catalyst release
45
+
Pkg.add("Catalyst")
46
+
```
47
+
33
48
## Breaking changes and new features
34
49
35
50
**NOTE:** Version 14 is a breaking release, prompted by the release of ModelingToolkit.jl version 9. This caused several breaking changes in how Catalyst models are represented and interfaced with.
0 commit comments