Intro
![]()
Jupyter is an open-source project that provides a browser-based interactive computing environment, allowing you to easily combine executable Python code, Markdown text, and visualizations into a single notebook.
Jupyter Keyboard Shortcuts
VS Code Integration
VS Code integrates the Jupyter notebook interface directly into the editor through the Jupyter extension. This setup provides a seamless experience for working with Jupyter notebooks without needing to manage separate server processes or switch to a browser.
Exporting Jupyter
Exporting the Jupyter Notebook
The command is jupyter nbconvert, followed by notebook to convert, destination format (option --to <format>) and output filename (option --output <filename>)
- Export to markdown
- Can specify output name like 
--output output.md 
 - Can specify output name like 
 
jupyter nbconvert my_notebook.ipynb --to markdown - Export to html
 
jupyter nbconvert my_notebook.ipynb --to html --output output.html- Use the basic template to embed the HTML as a fragment into
 
jupyter nbconvert my_notebook.ipynb --to html --template basic --output output.html



