Home > Software design >  How do I help Python find Jupyter command 'jupyter-nbconvert', to export Jupyter Notebook
How do I help Python find Jupyter command 'jupyter-nbconvert', to export Jupyter Notebook

Time:05-24

UPDATE - A solution was found, see comments, and the end of this post for further details

I am using Jupyter Notebook in VS Code, and trying to export my notebook to HTML through the this picture)

Try to export again, and say yes to installing Jupyter again if VSCode asks to.

CodePudding user response:

You might try using this command:

Jupyter : Select interpreter to start Jupyter server and pick the python environment where you have nbconvert installed.

Alternatively you could install nbconvert into the environment we're using to run your notebook. It should be this one:

~\AppData\Local\Programs\Python\Python310\python.exe

CodePudding user response:

You can use the export tool in vscode to convert it to pdf. enter image description here

For more info go to this link

  • Related