> ## Documentation Index
> Fetch the complete documentation index at: https://base.bangwu.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Jupyter

> Jupyter Notebook is an interactive data analysis tool for running code in the browser, covering installation, remote SSH access, and shortcuts.

# Jupyter

## Jupyter Notebook

## Interactive code notebooks in the browser

Jupyter Notebook is the first-generation product from the Jupyter team and still the most classic one. If you have learned Python before, you are probably already familiar with it.

## JupyterLab

JupyterLab is the more advanced successor to Jupyter Notebook, with a richer interface and more features.

## JupyterLite

JupyterLite is a lightweight static Jupyter environment built by the Jupyter team to run entirely in the browser. In other words, as long as you have a browser, you can use it without a server or a local programming environment. That is exactly why it is called “Lite”.

### Advantages

A lightweight tool like this is especially suitable for embedding an online code editor in a web page.

```html theme={"theme":{"light":"github-light","dark":"github-dark"}}
<iframe src="https://repl.bangwu.top/repl/?kernel=python&toolbar=1"> </iframe>
```

Embedding the snippet above in an HTML page gives you a simple editor. It could be extended further with code completion and other features.
