Skip to content

Commit f1b7315

Browse files
committed
Update Contribution Page for Jupyter Server
1 parent edb2f1b commit f1b7315

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

CONTRIBUTING.rst

+8-3
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Running Tests
9393

9494
Install dependencies::
9595

96-
pip install -e .[test]
96+
pip install -e ".[test]"
9797
pip install -e examples/simple # to test the examples
9898

9999
To run the Python tests, use::
@@ -119,15 +119,20 @@ Building the Docs
119119

120120
Install the docs requirements using ``pip``::
121121

122-
pip install .[doc]
122+
pip install ".[doc]"
123123

124124
Once you have installed the required packages, you can build the docs with::
125125

126126
cd docs
127127
make html
128128

129+
The above may run into issues related to unavailability of sphinx and related dependencies. You can `install sphinx <https://www.sphinx-doc.org/en/master/usage/installation.html>`_ and the following dependencies.::
130+
131+
pip install myst_parser sphinxcontrib_github_alt sphinxcontrib.openapi \
132+
sphinxemoji sphinx_autodoc_typehints pydata-sphinx-theme
133+
129134
You can also run the tests using ``hatch`` without installing test dependencies
130-
in your local environment.
135+
in your local environment.::
131136

132137
pip install hatch
133138
hatch run docs:build

0 commit comments

Comments
 (0)