File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ Pkg.add("Plots")
97
97
```
98
98
is also needed.
99
99
100
- It is ** strongly** recommended to run Catalyst in its own environment with the
100
+ It is ** strongly** recommended to install and use Catalyst in its own environment with the
101
101
minimal set of needed packages. For example, to install Catalyst and Plots in a
102
102
new environment named ` catalyst_project ` (saved in the current directory) one
103
103
can say
@@ -114,6 +114,17 @@ Pkg.add("Catalyst")
114
114
Pkg. add (" Plots" )
115
115
```
116
116
117
+ After installation, we suggest running
118
+ ``` julia
119
+ Pkg. status (" Catalyst" )
120
+ ```
121
+ to confirm that the latest version of Catalyst was installed (and not an older version).
122
+ If you have installed into a new environment this should always be the case. However, if you
123
+ installed into an existing environment, such as the default Julia global environment, the presence
124
+ of incompatible versions of other pre-installed packages could lead to older versions of Catalyst
125
+ being installed. In this case we again recommend creating a new environment and installing Catalyst
126
+ there to obtain the latest version.
127
+
117
128
A more thorough guide for setting up Catalyst and installing Julia packages can be found [ here] (@ref catalyst_for_new_julia_users_packages).
118
129
119
130
## [ Illustrative example] (@id doc_index_example)
You can’t perform that action at this time.
0 commit comments