I'm using quarto html format to produce a document with both python and R code. The rendering was smooth until I added the first python lines of python code:
import requests
url = 'some/url'
page = requests.get(url)
The code works just fine without rendering, so I can't spot my mistake.
This is the error message from the RStudio "Background Jobs" pane:
Jupyter is not available in this Python installation.
Install with py -m pip install jupyter
Should I install jupyter, even if I'm using the knitr engine for rendering?
EDIT (YAML section)
---
title: "Web scrapping"
author: "Diabb Zegpi"
format:
html:
self-contained: true
theme: [default, custom.scss]
editor: visual
lang: es
editor_options:
chunk_output_type: inline
---