Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
  • Loading branch information
a2ray committed Aug 17, 2023
1 parent bfc2295 commit 41ee332
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions docs/src/index.md
Expand Up @@ -163,13 +163,16 @@ and you should see output like:
```
This is the basic recipe for all the cluster HiQGA jobs on NCI. After the call to `manager = MPIClusterManagers.start_main_loop(MPI_TRANSPORT_ALL)`, standard MPI execution stops, and we return to an explicit manager-worker mode with code execution only continuing on the manager which is Julia process 1.
### Installing PyPlot on NCI
Due to indode restrictions on NCI, we've resorted to using a communal matplotlib install as follows:
- Remove Conda, PyPlot, PyCall, HiQGA from your julia environment if it already exists
Add HiQGA just as usual:
```
pkg>add HiQGA
```
However, this installs PyPlot through Conda by default. Due to indode restrictions on NCI, we've resorted to using a communal matplotlib install as follows:
- Remove Conda, PyPlot, PyCall from your julia environment if it already exists
```
pkg> rm Conda
pkg> rm PyCall
pkg> rm PyPlot
pkg> rm HiQGA
```
- Delete the conda directory from your .julia directory (or wherever your julia depot is):
```
Expand All @@ -185,9 +188,9 @@ Install and build PyPlot:
```
pkg> add PyPlot
```
Install latest HiQGA release version:
build the installed HiQGA release:
```
pkg> add HiQGA
pkg> build HiQGA
```
then exit julia with
```
Expand Down

0 comments on commit 41ee332

Please sign in to comment.