How can I set the Jupyter path? #9432
-
DescriptionIs it possible to set the Jupyter path directly when running Quarto in VSCode? My setup seems to not be working otherwise. When I try to compile a document I get the message:
So then I run
So then I run
So I run |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
See https://quarto.org/docs/computations/julia.html#installation. And regarding Jupyter kernels: https://docs.jupyter.org/en/latest/install/kernels.html FYI, in the 1.5 pre-release there is native Julia engine: https://quarto.org/docs/computations/julia.html#using-the-julia-engine |
Beta Was this translation helpful? Give feedback.
-
In the end I fixed it by pointing quarto to the python installed by Conda.jl in Julia, not the homebrew version. At first I did this by setting my PATH, but somehow when run in VSCode it was setting the Solution: In my .zprofile I added a line |
Beta Was this translation helpful? Give feedback.
In the end I fixed it by pointing quarto to the python installed by Conda.jl in Julia, not the homebrew version. At first I did this by setting my PATH, but somehow when run in VSCode it was setting the
QUARTO_PYTHON
environment variable to still point to the homebrew version! Very annoying and its unclear whether it was the VSCode extension or something else setting the variable.Solution: In my .zprofile I added a line
export QUARTO_PYTHON=${HOME}/.julia/conda/3/aarch64/bin/python3
. This now finds the right Jupyter.