Skip to content

Commit afbb429

Browse files
InterdisciplinaryPhysicsTeamClaudMorpitmonticone
committed
Update installation instructions
Co-Authored-By: Claudio Moroni <[email protected]> Co-Authored-By: Pietro Monticone <[email protected]>
1 parent 6a02459 commit afbb429

File tree

3 files changed

+33
-9
lines changed

3 files changed

+33
-9
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,18 @@ Finally, MultilayerGraphs.jl has been integrated within the [JuliaDynamics](http
4141

4242
## Installation
4343

44-
To install MultilayerGraphs.jl it is sufficient to activate the `pkg` mode by pressing `]` in the Julia REPL and then run the following command:
44+
To install the latest stable release of MultilayerGraphs.jl, make sure you have [installed](https://julialang.org/downloads/) Julia v1.8 or later and run the following command:
4545

46-
```nothing
47-
pkg> add MultilayerGraphs
46+
``` julia
47+
using Pkg
48+
Pkg.add("MultilayerGraphs")
49+
```
50+
51+
The development version can be installed as follows:
52+
53+
``` julia
54+
using Pkg
55+
Pkg.add(url="https://github.com/JuliaGraphs/MultilayerGraphs.jl")
4856
```
4957

5058
## Usage

docs/src/index.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,18 @@ The tutorial below will be focused on the end-used experience, as developer meth
4545

4646
## Installation
4747

48-
To install MultilayerGraphs.jl it is sufficient to activate the `pkg` mode by pressing `]` in the Julia REPL and then run the following command:
48+
To install the latest stable release of MultilayerGraphs.jl, make sure you have [installed](https://julialang.org/downloads/) Julia v1.8 or later and run the following command:
4949

50-
```nothing
51-
pkg> add MultilayerGraphs
50+
``` julia
51+
using Pkg
52+
Pkg.add("MultilayerGraphs")
53+
```
54+
55+
The development version can be installed as follows:
56+
57+
``` julia
58+
using Pkg
59+
Pkg.add(url="https://github.com/JuliaGraphs/MultilayerGraphs.jl")
5260
```
5361

5462
## Tutorial

example/example.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ Here we are going to synthetically illustrate some of the main features of Multi
44

55
## Installation
66

7-
To install MultilayerGraphs.jl it is sufficient to activate the `pkg` mode by pressing `]` in the Julia REPL and then run the following command:
7+
To install the latest stable release of MultilayerGraphs.jl, make sure you have [installed](https://julialang.org/downloads/) Julia v1.8 or later and run the following command:
88

9-
```nothing
10-
pkg> add MultilayerGraphs
9+
``` julia
10+
using Pkg
11+
Pkg.add("MultilayerGraphs")
12+
```
13+
14+
The development version can be installed as follows:
15+
16+
``` julia
17+
using Pkg
18+
Pkg.add(url="https://github.com/JuliaGraphs/MultilayerGraphs.jl")
1119
```
1220

1321
## Usage

0 commit comments

Comments
 (0)