-
|
I've tried $env:QUARTO_PYTHON = "python"Doesn't work either. Here's the print of what I got: |
Beta Was this translation helpful? Give feedback.
Answered by
cderv
Apr 16, 2026
Replies: 1 comment 3 replies
-
|
I think the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @francisbarton for your reply. Much appreciated to still help on unanswered topic!
@CGMossa sorry we missed your question 3 years ago. If you still have issue nowadays, read the updated doc. As mention in installation (https://quarto.org/docs/computations/python.html#installation), quarto will try to be clever to detect Python from PATH, or from virtual activated, but you can still set env var to a python filepath (so not
$env:QUARTO_PYTHON = "python"as it will look forpythonlocally to your project).Running
quarto check jupyter --log-level debugcould give you hints on discovery, orquarto render --log-level debug(more in https://quarto.org/docs/troubleshooting/#verbose-mode)H…