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: docs/src/configuration.md
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ Preferences are merged across the Julia load path, such that it is feasible to p
76
76
mpiexec = "/software/mpi/bin/mpiexec"
77
77
```
78
78
79
-
2. Create a file called `Project.toml` or `JuliaProject.toml` in a central location, for example `/software/mpi/julia` or in the same directory as the MPI library module, and add the following contents:
79
+
2. Create a file called `Project.toml` or `JuliaProject.toml` in a central location (for example `/software/mpi/julia`, or in the same directory as the MPI module file), and add the following contents:
80
80
81
81
```toml
82
82
[extras]
@@ -94,12 +94,21 @@ Preferences are merged across the Julia load path, such that it is feasible to p
94
94
95
95
3. Append the directory containing the file to the [`JULIA_LOAD_PATH`](https://docs.julialang.org/en/v1/manual/environment-variables/#JULIA_LOAD_PATH) environment variable, with a colon (`:`) separator.
96
96
97
-
If this variable is _not_ already set, it should be prefixed with a colon to ensure correct
98
-
behavior of the Julia load path, e.g. `JULIA_LOAD_PATH=":/software/mpi/julia"`.
97
+
!!! note
98
+
If this variable is _not_ already set, it should be prefixed with a colon to ensure correct
99
+
behavior of the Julia load path (e.g. `JULIA_LOAD_PATH=":/software/mpi/julia"`)
100
+
99
101
If using environment modules, this can be achieved with
0 commit comments