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: README.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,19 +95,15 @@ If you wish to speed up local rendering, there are two options available:
95
95
96
96
## Troubleshooting build issues
97
97
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.
99
99
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:
101
101
102
102
```bash
103
-
quarto render /path/to/index.qmd --execute-daemon-restart
103
+
quarto call engine julia kill
104
104
```
105
105
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).
0 commit comments