Skip to content

Commit 9ecf0c3

Browse files
committed
Update command to reset Quarto Julia process in README
1 parent 57086c0 commit 9ecf0c3

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -95,19 +95,15 @@ If you wish to speed up local rendering, there are two options available:
9595

9696
## Troubleshooting build issues
9797

98-
As described in the [Quarto docs](https://quarto.org/docs/computations/julia.html#using-the-julia-engine), Quarto's Julia engine uses a worker process behind the scenes.
98+
Quarto's Julia engine uses a separate worker process behind the scenes.
9999
Sometimes this can result in issues with old package code not being unloaded (e.g. when package versions are upgraded).
100-
If you find that Quarto's execution is failing with errors that aren't reproducible via a normal REPL, try adding the `--execute-daemon-restart` flag to the `quarto render` command:
100+
If you find that Quarto's execution is failing with errors that aren't reproducible via a normal REPL, try running:
101101

102102
```bash
103-
quarto render /path/to/index.qmd --execute-daemon-restart
103+
quarto call engine julia kill
104104
```
105105

106-
And also, kill any stray Quarto processes that are still running (sometimes it keeps running in the background):
107-
108-
```bash
109-
pkill -9 -f quarto
110-
```
106+
before rerunning the build (see [the Quarto docs](https://quarto.org/docs/computations/julia.html#quarto-call-engine-julia-commands) for more information).
111107

112108
## Licence
113109

0 commit comments

Comments
 (0)