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
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -36,16 +36,10 @@ For more details have a look at the [documentation](https://thorek1.github.io/Ma
36
36
37
37
`MacroModelling.jl` requires [`julia`](https://julialang.org/downloads/) version 1.8 or higher and an IDE is recommended (e.g. [`VS Code`](https://code.visualstudio.com/download) with the [`julia extension`](https://marketplace.visualstudio.com/items?itemName=julialang.language-julia)).
38
38
39
-
Once set up you can install `MacroModelling.jl` by typing the following in the julia REPL:
39
+
Once set up you can install `MacroModelling.jl`(and `Plots` and `StatsPlots` in order to plot) by typing the following in the Julia REPL:
40
40
41
41
```julia
42
-
using Pkg; Pkg.add("MacroModelling")
43
-
```
44
-
45
-
In order to plot you also need to install `Plots` and `StatsPlots`:
46
-
47
-
```julia
48
-
using Pkg; Pkg.add(["Plots","StatsPlots"])
42
+
using Pkg; Pkg.add(["MacroModelling", "Plots", "StatsPlots"])
0 commit comments