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 Contributor Guides](http://jupyter.readthedocs.io/en/latest/contributor/content-contributor.html) provide extensive information on contributing code or documentation to Jupyter projects. The limited instructions below for setting up a development environment are for your convenience.
18
+
19
+
## Coding
20
+
21
+
You'll need Python and `pip` on the search path. Clone the Jupyter Client git repository to your computer, for example in `/my/project/jupyter_client`.
22
+
Now create an [editable install](https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs)
23
+
and download the dependencies of code and test suite by executing:
24
+
25
+
cd /my/projects/jupyter_client/
26
+
pip install -e .[test]
27
+
py.test
28
+
29
+
The last command runs the test suite to verify the setup. During development, you can pass filenames to `py.test`, and it will execute only those tests.
30
+
31
+
## Documentation
32
+
33
+
The documentation of Jupyter Client is generated from the files in `docs/` using Sphinx. Instructions for setting up Sphinx with a selection of optional modules are in the [Documentation Guide](http://jupyter.readthedocs.io/en/latest/contrib_docs/index.html). You'll also need the `make` command.
34
+
For a minimal Sphinx installation to process the Jupyter Client docs, execute:
35
+
36
+
pip install sphinx sphinx_rtd_theme
37
+
38
+
The following commands build the documentation in HTML format and check for broken links:
39
+
40
+
cd /my/projects/jupyter_client/docs/
41
+
make html linkcheck
42
+
43
+
Point your browser to the following URL to access the generated documentation:
0 commit comments