2016-03-15 03:21:27 +08:00
Contributing to the Jupyter Notebook
====================================
2016-03-19 21:24:08 +08:00
If you're reading this section, you're probably interested in contributing to
Jupyter. Welcome and thanks for your interest in contributing!
Please take a look at the Contributor documentation, familiarize yourself with
2016-10-03 02:59:18 +08:00
using the Jupyter Notebook, and introduce yourself on the mailing list and
share what area of the project you are interested in working on.
2016-03-15 03:21:27 +08:00
General Guidelines
------------------
For general documentation about contributing to Jupyter projects, see the
`Project Jupyter Contributor Documentation`__ .
2016-10-10 04:56:18 +08:00
__ https://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html
2016-03-15 03:21:27 +08:00
Setting Up a Development Environment
------------------------------------
2016-03-15 22:38:31 +08:00
Installing Node.js and npm
^^^^^^^^^^^^^^^^^^^^^^^^^^
2016-03-15 03:21:27 +08:00
Building the Notebook from its GitHub source code requires some tools to
2017-03-17 19:06:12 +08:00
create and minify JavaScript components and the CSS,
specifically Node.js and Node's package manager, `` npm `` .
It should be node version ≥ 6.0.
2016-03-15 03:21:27 +08:00
2016-03-19 21:37:58 +08:00
If you use `` conda `` , you can get them with::
2016-03-15 03:21:27 +08:00
2017-03-17 19:06:12 +08:00
conda install -c conda-forge nodejs
2016-03-15 03:21:27 +08:00
2017-09-01 19:05:15 +08:00
If you use `Homebrew <https://brew.sh/> `_ on Mac OS X::
2016-03-15 03:21:27 +08:00
brew install node
2017-03-17 19:06:12 +08:00
Installation on Linux may vary, but be aware that the `nodejs` or `npm` packages
included in the system package repository may be too old to work properly.
2016-03-15 03:21:27 +08:00
2016-03-19 21:37:58 +08:00
You can also use the installer from the `Node.js website <https://nodejs.org> `_ .
2016-03-15 03:21:27 +08:00
2016-03-15 22:28:08 +08:00
Installing the Jupyter Notebook
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Once you have installed the dependencies mentioned above, use the following
steps::
2017-03-17 19:08:28 +08:00
pip install --upgrade setuptools pip
2016-03-15 22:28:08 +08:00
git clone https://github.com/jupyter/notebook
cd notebook
2017-03-17 19:08:28 +08:00
pip install -e .
2016-03-15 22:28:08 +08:00
2017-03-17 19:08:28 +08:00
If you are using a system-wide Python installation and you only want to install the notebook for you,
you can add `` --user `` to the install commands.
2016-03-15 22:28:08 +08:00
2016-07-16 23:26:01 +08:00
Once you have done this, you can launch the master branch of Jupyter notebook
from any directory in your system with::
jupyter notebook
2018-04-23 10:48:39 +08:00
Verification
^^^^^^^^^^^^
While running the notebook, select one of your notebook files (the file will have the extension `` .ipynb `` ).
In the top tab you will click on "Help" and then click on "About". In the pop window you will see information about the version of Jupyter that you are running. You will see "The version of the notebook server is:".
If you are working in development mode, you will see that your version of Jupyter notebook will include the word "dev".
2018-04-10 23:38:02 +08:00
2018-04-27 01:27:30 +08:00
.. image :: ./docs/source/_static/images/jupyter-verification.png
2018-04-14 05:39:19 +08:00
:width: 40pt
2018-04-10 23:50:21 +08:00
2018-04-23 10:48:39 +08:00
If it does not include the word "dev", you are currently not working in development mode and should follow the steps below to uninstall and reinstall Jupyter.
2018-04-10 23:38:02 +08:00
2018-04-10 23:40:08 +08:00
Troubleshooting the Installation
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
If you do not see that your Jupyter Notebook is not running on dev mode, it's possible that you are
running other instances of Jupyter Notebook. You can try the following steps:
1. Uninstall all instances of the notebook package. These include any installations you made using
pip or conda
2018-04-23 10:48:39 +08:00
2. Run `` python3 -m pip install -e . `` in the notebook repository to install the notebook from there
2018-04-28 02:02:49 +08:00
3. Run `` npm run build `` to make sure the Javascript and CSS are updated and compiled
2018-04-23 10:48:39 +08:00
4. Launch with `` python3 -m notebook --port 8989 `` , and check that the browser is pointing to `` localhost:8989 ``
2018-04-10 23:40:08 +08:00
(rather than the default 8888). You don't necessarily have to launch with port 8989, as long as you use
a port that is neither the default nor in use, then it should be fine.
5. Verify the installation with the steps in the previous section.
2016-03-15 03:21:27 +08:00
Rebuilding JavaScript and CSS
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
There is a build step for the JavaScript and CSS in the notebook.
2016-03-15 21:32:49 +08:00
To make sure that you are working with up-to-date code, you will need to run
this command whenever there are changes to JavaScript or LESS sources::
2016-03-15 03:21:27 +08:00
2017-02-14 07:57:08 +08:00
npm run build
2016-03-15 03:21:27 +08:00
2017-02-14 07:57:08 +08:00
**IMPORTANT:** Don't forget to run `` npm run build `` after switching branches.
When switching between branches of different versions (e.g. `` 4.x `` and
`` master `` ), run `` pip install -e . `` . If you have tried the above and still
find that the notebook is not reflecting the current source code, try cleaning
the repo with `` git clean -xfd `` and reinstalling with `` pip install -e . `` .
Development Tip
2016-03-15 03:21:27 +08:00
"""""""""""""""
2017-02-14 07:57:08 +08:00
When doing development, you can use this command to automatically rebuild
JavaScript and LESS sources as they are modified::
2016-03-15 03:21:27 +08:00
npm run build:watch
Git Hooks
"""""""""
2017-02-14 07:57:08 +08:00
If you want to automatically update dependencies and recompile JavaScript and
CSS after checking out a new commit, you can install post-checkout and
post-merge hooks which will do it for you::
2016-03-15 03:21:27 +08:00
git-hooks/install-hooks.sh
See `` git-hooks/README.md `` for more details.
Running Tests
-------------
2016-03-15 22:28:08 +08:00
Python Tests
^^^^^^^^^^^^
Install dependencies::
2017-03-17 19:08:28 +08:00
pip install -e .[test]
2016-03-15 22:28:08 +08:00
To run the Python tests, use::
2018-07-21 05:52:21 +08:00
pytest
2016-03-15 22:28:08 +08:00
If you want coverage statistics as well, you can run::
2018-07-21 05:52:21 +08:00
py.test --cov notebook -v --pyargs notebook
2016-03-15 22:28:08 +08:00
2016-03-15 03:21:27 +08:00
JavaScript Tests
^^^^^^^^^^^^^^^^
To run the JavaScript tests, you will need to have PhantomJS and CasperJS
installed::
2017-02-27 23:57:40 +08:00
npm install -g casperjs phantomjs-prebuilt
2016-03-15 03:21:27 +08:00
Then, to run the JavaScript tests::
python -m notebook.jstest [group]
where `` [group] `` is an optional argument that is a path relative to
`` notebook/tests/ `` .
For example, to run all tests in `` notebook/tests/notebook `` ::
python -m notebook.jstest notebook
or to run just `` notebook/tests/notebook/deletecell.js `` ::
python -m notebook.jstest notebook/deletecell.js
2016-03-25 01:48:23 +08:00
2016-03-15 03:21:27 +08:00
Building the Documentation
--------------------------
2016-10-03 02:59:18 +08:00
To build the documentation you'll need `Sphinx <http://www.sphinx-doc.org/> `_ ,
`pandoc <http://pandoc.org/> `_ and a few other packages.
2016-03-25 01:48:23 +08:00
To install (and activate) a `conda environment`_ named `` notebook_docs ``
2016-07-05 23:10:52 +08:00
containing all the necessary packages (except pandoc), use::
2016-03-25 01:48:23 +08:00
2016-03-25 06:13:48 +08:00
conda env create -f docs/environment.yml
2016-03-25 01:48:23 +08:00
source activate notebook_docs # Linux and OS X
activate notebook_docs # Windows
.. _conda environment:
2017-09-01 19:05:15 +08:00
https://conda.io/docs/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file
2016-03-25 01:48:23 +08:00
2017-03-17 19:08:28 +08:00
If you want to install the necessary packages with `` pip `` instead::
2016-03-15 03:21:27 +08:00
2017-03-17 19:08:28 +08:00
pip install -r docs/doc-requirements.txt
2016-03-15 03:21:27 +08:00
2016-03-25 01:48:23 +08:00
Once you have installed the required packages, you can build the docs with::
2016-03-15 03:21:27 +08:00
cd docs
make html
2016-03-15 22:15:33 +08:00
After that, the generated HTML files will be available at
2016-03-25 06:13:48 +08:00
`` build/html/index.html `` . You may view the docs in your browser.
2016-03-15 22:15:33 +08:00
You can automatically check if all hyperlinks are still valid::
make linkcheck
2016-03-15 03:21:27 +08:00
Windows users can find `` make.bat `` in the `` docs `` folder.
You should also have a look at the `Project Jupyter Documentation Guide`__ .
2016-06-08 04:08:58 +08:00
__ https://jupyter.readthedocs.io/en/latest/contrib_docs/index.html