quarto with poetry: The papermill package is required for processing --execute-params #4040
-
I have the
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 22 replies
-
Answer: i got this working by installing E.g.,:
and then execute the command above again and it worked. Probably just a conflict of environments. |
Beta Was this translation helpful? Give feedback.
-
Coming here late, having had the same issue.
{
"argv": [
"python",
"-m",
"ipykernel_launcher",
"-f",
"{connection_file}"
],
"display_name": "Python 3 (ipykernel)",
"language": "python",
"metadata": {
"debugger": true
}
} I think the root of the issue is in the Anyway, changing the kernel.json above to have the full path to the local python shell seems to work. A proper quarto fix would be to query the proper full path of python, by using |
Beta Was this translation helpful? Give feedback.
-
I would like to ask how to successfully pass path parameters to quarto's ipynb file. This is my current code.
It doesn't seem to report an error, but there are no parameters passed in either, because the generated path is still the path I wrote in ipynb |
Beta Was this translation helpful? Give feedback.
Answer: i got this working by installing
papermill
in my root directory (by deactivating the conda shell I was in or something).E.g.,:
and then execute the command above again and it worked.
Probably just a conflict of environments.