What exactly is needed to let jupyter run smoothly? #14436
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 5 replies
-
|
your computer needs to synchronize with the software servers before it can build your new workspace. Simply open the terminal and type sudo apt update to refresh the system's memory; this tells the computer exactly where the new files are located. Once that is done, you must create a "Virtual Environment," which acts like a private toolbox where you can safely install the missing parts without the system blocking you. Open your terminal and run python3 -m venv quarto-env to create this workspace, then type source quarto-env/bin/activate to enter it. Once inside, simply run pip install jupyter nbformat nbclient ipykernel to add the "connector pins" Quarto is looking for; this satisfies the nbformat error and provides the engine needed to execute your code. After these steps, Quarto will recognize the Jupyter environment and successfully render your documents. |
Beta Was this translation helpful? Give feedback.
-
|
The documentation: |
Beta Was this translation helpful? Give feedback.
-
|
That was the missing link. Quarto 1.9.37 [✓] Checking tools....................OK [✓] Checking LaTeX....................OK [✓] Checking Chrome Headless....................OK [✓] Checking basic markdown render....OK [✓] Checking R installation...........(None) [✓] Checking Python 3 installation....OK [✓] Checking Jupyter engine render....OK [✓] Checking Julia installation... **Wouldn't it be helpful to see above commands when running Instead of
Just an idea ...** |
Beta Was this translation helpful? Give feedback.

your computer needs to synchronize with the software servers before it can build your new workspace. Simply open the terminal and type
sudo apt update
to refresh the system's memory; this tells the computer exactly where the new files are located. Once that is done,
you must create a "Virtual Environment," which acts like a private toolbox where you can safely install the missing parts without the system blocking you. Open your terminal and run
python3 -m venv quarto-env
to create this workspace, then type
source quarto-env/bin/activate
to enter it. Once inside, simply run
pip install jupyter nbformat nbclient ipykernel
to add the "connector pins" Quarto is looking for; this satisfies the…