notebook/README.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
4.6 KiB
Markdown
Raw Normal View History

2015-04-11 07:20:18 +08:00
# Jupyter Notebook
2022-03-02 17:05:57 +08:00
![Github Actions Status](https://github.com/jupyter/notebook/workflows/Build/badge.svg)
2019-03-29 18:13:58 +08:00
[![Documentation Status](https://readthedocs.org/projects/jupyter-notebook/badge/?version=latest)](https://jupyter-notebook.readthedocs.io/en/latest/?badge=latest)
2022-03-02 17:05:57 +08:00
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter/notebook/main?urlpath=tree)
2021-02-24 05:56:23 +08:00
[![codecov](https://codecov.io/gh/jupyter/notebook/branch/master/graph/badge.svg)](https://codecov.io/gh/jupyter/notebook)
2015-09-25 22:27:45 +08:00
2015-12-28 16:00:40 +08:00
The Jupyter notebook is a web-based notebook environment for interactive
computing.
2015-04-11 07:20:18 +08:00
2022-03-01 23:35:13 +08:00
![Jupyter notebook example](docs/resources/running_code_med.png 'Jupyter notebook example')
2015-12-28 16:36:12 +08:00
2020-06-03 23:30:24 +08:00
### Notice
2022-03-01 23:35:13 +08:00
2022-03-02 17:05:57 +08:00
The Jupyter Notebook project is currently undertaking a transition to a more modern code base built from the ground-up using JupyterLab components and extensions.
2020-06-03 09:47:48 +08:00
2022-03-02 17:05:57 +08:00
There is new stream of work which was submitted and then accepted as a Jupyter Enhancement Proposal (JEP): https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
2020-06-03 09:47:48 +08:00
2022-03-02 17:05:57 +08:00
#### Notebook v7
2020-06-03 09:47:48 +08:00
The next major version of Notebook will be based on:
- JupyterLab components for the frontend
- Jupyter Server for the Python server
2022-03-18 04:13:33 +08:00
This represents a significant change to the `jupyter/notebook` code base.
To learn more about Notebook v7: https://jupyter.org/enhancement-proposals/79-notebook-v7/notebook-v7.html
2022-03-01 23:35:13 +08:00
2022-03-02 17:05:57 +08:00
#### Classic Notebook v6
2020-06-03 09:47:48 +08:00
2022-03-02 17:05:57 +08:00
Maintainance and security-related issues are now being addressed in the [`6.4.x`](https://github.com/jupyter/notebook/tree/6.4.x) branch.
New features and continuous improvement is now focused on Notebook v7 (see section above).
If you have an open pull request with a new feature or if you were planning to open one, we encourage switching over to the Jupyter Server and JupyterLab architecture, and distribute it as a server extension and / or JupyterLab prebuilt extension. That way your new feature will also be compatible with the new Notebook v7.
2022-03-19 19:43:53 +08:00
### Jupyter notebook, the language-agnostic evolution of IPython notebook
2022-03-01 23:35:13 +08:00
2016-09-22 21:20:19 +08:00
Jupyter notebook is a language-agnostic HTML notebook application for
Project Jupyter. In 2015, Jupyter notebook was released as a part of
2016-09-22 21:20:19 +08:00
The Big Split™ of the IPython codebase. IPython 3 was the last major monolithic
2022-03-01 23:35:13 +08:00
release containing both language-agnostic code, such as the _IPython notebook_,
and language specific code, such as the _IPython kernel for Python_. As
computing spans across many languages, Project Jupyter will continue to develop the
language-agnostic **Jupyter notebook** in this repo and with the help of the
community develop language specific kernels which are found in their own
discrete repos.
2022-03-02 17:05:57 +08:00
- [The Big Split™ announcement](https://blog.jupyter.org/the-big-split-9d7b88a031a7)
- [Jupyter Ascending blog post](https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e)
2015-12-28 16:00:40 +08:00
## Installation
2022-03-01 23:35:13 +08:00
2015-12-29 00:35:10 +08:00
You can find the installation documentation for the
[Jupyter platform, on ReadTheDocs](https://jupyter.readthedocs.io/en/latest/install.html).
2016-01-05 01:11:19 +08:00
The documentation for advanced usage of Jupyter notebook can be found
[here](https://jupyter-notebook.readthedocs.io/en/latest/).
2015-12-28 16:00:40 +08:00
For a local installation, make sure you have
[pip installed](https://pip.readthedocs.io/en/stable/installing/) and run:
2015-12-28 16:00:40 +08:00
2022-03-02 17:05:57 +08:00
```bash
pip install notebook
```
2015-12-28 16:00:40 +08:00
## Usage - Running Jupyter notebook
2015-10-07 07:56:31 +08:00
2015-12-28 16:00:40 +08:00
### Running in a local installation
2015-10-07 07:56:31 +08:00
Launch with:
2022-03-02 17:05:57 +08:00
```bash
jupyter notebook
```
2015-10-07 07:56:31 +08:00
### Running in a remote installation
2019-03-29 18:13:58 +08:00
You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html).
## Development Installation
2022-03-02 17:05:57 +08:00
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for how to set up a local development installation.
2015-12-28 22:45:31 +08:00
2016-02-25 01:08:45 +08:00
## Contributing
2022-03-02 17:05:57 +08:00
If you are interested in contributing to the project, see [`CONTRIBUTING.md`](CONTRIBUTING.md).
## Community Guidelines and Code of Conduct
This repository is a Jupyter project and follows the Jupyter
[Community Guides and Code of Conduct](https://jupyter.readthedocs.io/en/latest/community/content-community.html).
2016-02-25 01:08:45 +08:00
2015-12-28 22:45:31 +08:00
## Resources
2022-03-01 23:35:13 +08:00
2015-12-28 22:45:31 +08:00
- [Project Jupyter website](https://jupyter.org)
2019-03-29 18:13:58 +08:00
- [Online Demo at jupyter.org/try](https://jupyter.org/try)
- [Documentation for Jupyter notebook](https://jupyter-notebook.readthedocs.io/en/latest/) [[PDF](https://media.readthedocs.org/pdf/jupyter-notebook/latest/jupyter-notebook.pdf)]
- [Korean Version of Installation](https://github.com/ChungJooHo/Jupyter_Kor_doc/)
- [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html) [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
2015-12-28 22:45:31 +08:00
- [Issues](https://github.com/jupyter/notebook/issues)
2022-03-02 17:05:57 +08:00
- [Technical support - Jupyter Google Group](https://discourse.jupyter.org/)