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
After installing quarto on Windows 11, I couldn't get the example working from this url.
How to reproduce the issue
Install Quarto version 1.2.313
Create the example document and name it test.qmd
---title: "Quarto Basics"format:
html:
code-fold: truejupyter: python3---
For a demonstration of a line plot on a polar axis, see @fig-polar.
```{python}#| label: fig-polar#| fig-cap: "A line plot on a polar axis"import numpy as npimport matplotlib.pyplot as pltr = np.arange(0, 2, 0.01)theta = 2 * np.pi * rfig, ax = plt.subplots( subplot_kw = {'projection': 'polar'} )ax.plot(theta, r)ax.set_rticks([0.5, 1, 1.5, 2])ax.grid(True)plt.show()
Go to the directory where the document is and install the packages into a separate venv (in Powershell):
Run the following command with the activated venv:
quarto render test.qmd --to html
What does happen
The command freezes and doesn't do anything. I doesn't write anything on the output. I noticed that it creates a correct test.ipynb file, but doesn't manage to execute it (the file doesn't have output cells).
Btw I also tried to run quarto check jupyter and it outputs the following:
Please include a minimal, fully reproducible example in a single .qmd file? Please provide the whole file rather than the snippet you believe is causing the issue.
Please format your issue so it is easier for us to read the bug report.
Please document the RStudio IDE version you're running (if applicable), by providing the value displayed in the "About RStudio" main menu dialog?
Please document the operating system you're running. If on Linux, please provide the specific distribution.
The text was updated successfully, but these errors were encountered:
Bug description
Introduction
After installing quarto on Windows 11, I couldn't get the example working from this url.
How to reproduce the issue
test.qmd
What does happen
The command freezes and doesn't do anything. I doesn't write anything on the output. I noticed that it creates a correct
test.ipynb
file, but doesn't manage to execute it (the file doesn't have output cells).Btw I also tried to run
quarto check jupyter
and it outputs the following:It freezeson
Checking Jupyter engine render....
What should happen
It should render the html into
test.html
.Versions
requirements.txt
Content of requirements.txt
Python
Quarto
Windows
Windows 11 Pro, Version 22H2, OS build 22621.1105
Checklist
The text was updated successfully, but these errors were encountered: