quarto publish Jupyter error #5494
-
On a Mac in RStudio I am trying to run which ends with a long list of errors starting with: after running (attached below) (-) Checking Jupyter engine render....Traceback (most recent call last): So I re-install Jupyter (and then Jupyterlab) ... there error messages remain the same. Michael |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
Could you share a small working (reproducible) example to work with, i.e., a complete Quarto document or a Git repository? Thanks. You can share a Quarto document using the following syntax, i.e., using more backticks than you have in your document (usually four ````qmd
---
title: "Reproducible Quarto Document"
format: html
---
This is a reproducible Quarto document using `format: html`.
It is written in Markdown and contains embedded R code.
When you run the code, it will produce a plot.
```{r}
plot(cars)
```
The end.
```` |
Beta Was this translation helpful? Give feedback.
-
small followup: from the RStudio console I get this: `Rendering for publish: ERROR: Jupyter kernel 'python3.9' not found. Error: Jupyter kernel 'python3.9' not found. I tried to switch python versions in Global Options and in Project Options ... without change |
Beta Was this translation helpful? Give feedback.
-
Please as I said, we need a "working" example. Also, could you share the results of Finally, could you user the GitHub toolbar to format your messages? For example, code in code blocks. |
Beta Was this translation helpful? Give feedback.
-
I reinstalled jupyterlab. It works well. Thanks. |
Beta Was this translation helpful? Give feedback.
The issue has nothing to do with Quarto, but with your Jupyter/Python setup.
It appears your installation of Python is faulty, as highlighted in the error from
quarto check
.You might want to fix your setup.
For help about this, I suggest to look on platforms more dedicated to Python, such as StackExchange or StackOverflow.