You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Jupyter notebook is a web-based notebook environment for interactive
@@ -12,19 +12,23 @@ computing.
12
12
13
13
### Notice
14
14
15
-
Please note that this repository is currently maintained by a skeleton crew of maintainers from the Jupyter community. We encourage users to transition to JupyterLab, where more immediate support can occur. Our approach moving forward will be:
15
+
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.
16
16
17
-
1. To maintain the security of the Jupyter Notebook. That means security-related issues and pull requests are our highest priority.
18
-
2. To address JupyterLab [feature parity issues](https://github.com/jupyterlab/jupyterlab/issues?q=is%3Aopen+is%3Aissue+label%3A%22tag%3AFeature+Parity%22). As part of this effort, we are also working on a better [notebook-only experience](https://github.com/jupyterlab/jupyterlab/issues/8450) in JupyterLab for users who prefer the UI of the classic Jupyter Notebook.
19
-
3. To be responsive to the hard work of community members who have opened pull requests. We are triaging these PRs. We cannot support or maintain new features at this time, but we welcome security and other sustainability fixes.
17
+
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
20
18
21
-
If you have an open pull request with a new feature or if you were planning to open one, please consider shipping it as a [notebook extension](https://jupyter-notebook.readthedocs.io/en/stable/extending/) instead.
19
+
#### Notebook v7
22
20
23
-
##### Alternatives to contributing to `notebook`
21
+
TODO
24
22
25
-
Additionally, please consider whether your contribution would be appropriate for either the underlying server for Jupyter front-ends, [jupyter_server](https://github.com/jupyter/jupyter_server) or in the [JupyterLab front-end](https://github.com/jupyterlab/jupyterlab).
23
+
#### Classic Notebook v6
26
24
27
-
### Jupyter notebook, the language-agnostic evolution of IPython notebook
25
+
Maintainance and security-related issues are now being addressed in the [`6.4.x`](https://github.com/jupyter/notebook/tree/6.4.x) branch.
26
+
27
+
New features and continuous improvement is now focused on Notebook v7 (see section above).
28
+
29
+
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.
30
+
31
+
### Jupyter notebook, the language-agnostic evolution of IPython notebo
28
32
29
33
Jupyter notebook is a language-agnostic HTML notebook application for
30
34
Project Jupyter. In 2015, Jupyter notebook was released as a part of
@@ -35,8 +39,9 @@ computing spans across many languages, Project Jupyter will continue to develop
35
39
language-agnostic **Jupyter notebook** in this repo and with the help of the
36
40
community develop language specific kernels which are found in their own
37
41
discrete repos.
38
-
[[The Big Split™ announcement](https://blog.jupyter.org/the-big-split-9d7b88a031a7)]
39
-
[[Jupyter Ascending blog post](https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e)]
42
+
43
+
-[The Big Split™ announcement](https://blog.jupyter.org/the-big-split-9d7b88a031a7)
44
+
-[Jupyter Ascending blog post](https://blog.jupyter.org/jupyter-ascending-1bf5b362d97e)
40
45
41
46
## Installation
42
47
@@ -48,27 +53,36 @@ The documentation for advanced usage of Jupyter notebook can be found
48
53
For a local installation, make sure you have
49
54
[pip installed](https://pip.readthedocs.io/en/stable/installing/) and run:
50
55
51
-
$ pip install notebook
56
+
```bash
57
+
pip install notebook
58
+
```
52
59
53
60
## Usage - Running Jupyter notebook
54
61
55
62
### Running in a local installation
56
63
57
64
Launch with:
58
65
59
-
$ jupyter notebook
66
+
```bash
67
+
jupyter notebook
68
+
```
60
69
61
70
### Running in a remote installation
62
71
63
72
You need some configuration before starting Jupyter notebook remotely. See [Running a notebook server](https://jupyter-notebook.readthedocs.io/en/stable/public_server.html).
64
73
65
74
## Development Installation
66
75
67
-
See [`CONTRIBUTING.rst`](CONTRIBUTING.rst) for how to set up a local development installation.
76
+
See [`CONTRIBUTING.md`](CONTRIBUTING.md) for how to set up a local development installation.
68
77
69
78
## Contributing
70
79
71
-
If you are interested in contributing to the project, see [`CONTRIBUTING.rst`](CONTRIBUTING.rst).
80
+
If you are interested in contributing to the project, see [`CONTRIBUTING.md`](CONTRIBUTING.md).
81
+
82
+
## Community Guidelines and Code of Conduct
83
+
84
+
This repository is a Jupyter project and follows the Jupyter
85
+
[Community Guides and Code of Conduct](https://jupyter.readthedocs.io/en/latest/community/content-community.html).
72
86
73
87
## Resources
74
88
@@ -78,4 +92,4 @@ If you are interested in contributing to the project, see [`CONTRIBUTING.rst`](C
78
92
-[Korean Version of Installation](https://github.com/ChungJooHo/Jupyter_Kor_doc/)
79
93
-[Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html)[[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
0 commit comments