File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,23 @@ 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
101
+ minimal set of needed packages. For example, to install Catalyst and Plots in a
102
+ new environment named ` catalyst_project ` (saved in the current directory) one
103
+ can say
104
+ ``` julia
105
+ Pkg. activate (" catalyst_project" )
106
+ Pkg. add (" Catalyst" )
107
+ Pkg. add (" Plots" )
108
+ ```
109
+ If one would rather just create a temporary environment that is not saved when
110
+ exiting Julia you can say
111
+ ``` julia
112
+ Pkg. activate (; temp = true )
113
+ Pkg. add (" Catalyst" )
114
+ Pkg. add (" Plots" )
115
+ ```
116
+
100
117
A more thorough guide for setting up Catalyst and installing Julia packages can be found [ here] (@ref catalyst_for_new_julia_users_packages).
101
118
102
119
## [ Illustrative example] (@id doc_index_example)
You can’t perform that action at this time.
0 commit comments