Skip to content

Commit

Permalink
Update install.qmd
Browse files Browse the repository at this point in the history
  • Loading branch information
JoostBuitink committed Oct 30, 2024
1 parent 243f7bd commit 9646d77
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions docs/getting_started/install.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ additional learning resources at [julialang.org/learning](https://julialang.org/

### Install from Julia's package repository

To access Julia's package manager, press `]` in the Julia REPL. To get back to the Julia
REPL, press backspace or ^C.
To access Julia's package manager, press `]` in the Julia REPL. To get back to the Julia REPL,
press backspace or ^C.

::: {.callout-tip}
If you haven't used Julia in a while, it's a good idea to run `up` to update your packages.
```julia-repl
```bash
pkg> up
```
:::

To access Julia's package manager and install wflow, use:
```julia-repl
```bash
pkg> add Wflow
```

Expand All @@ -52,7 +52,7 @@ automatically resolved and installed from the Pkg General registry.

You can also install wflow from the `master` branch on the repository as follows:

```julia-repl
```bash
pkg> add Wflow#master
```

Expand All @@ -65,7 +65,7 @@ handling.
If you want to modify any files in the repository, you need to do a development install. This
can be done using:

```julia-repl
```bash
pkg> dev Wflow
```

Expand All @@ -77,7 +77,7 @@ the latest changes manually using `git pull`.

Finally, go back to the Julia REPL and try to load wflow:

```julia-repl
```bash
julia> using Wflow
```

Expand Down Expand Up @@ -112,15 +112,15 @@ available for Windows. Download and install the `.msi` file. After installation,
two folders in the installation directory. Only the `bin/wflow_cli` is used. The `artifacts`
folder contains binary dependencies such as netCDF.

```
```bash
artifacts\
bin\wflow_cli
```

To verify whether the installation was completed successfully, run `wflow_cli` with no
arguments in the command line. This will display the following message:

```
```bash
Usage: wflow_cli 'path/to/config.toml'
```

Expand Down

0 comments on commit 9646d77

Please sign in to comment.