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
Copy file name to clipboardExpand all lines: CONTRIBUTING.rst
+8-3
Original file line number
Diff line number
Diff line change
@@ -93,7 +93,7 @@ Running Tests
93
93
94
94
Install dependencies::
95
95
96
-
pip install -e .[test]
96
+
pip install -e ".[test]"
97
97
pip install -e examples/simple # to test the examples
98
98
99
99
To run the Python tests, use::
@@ -119,15 +119,20 @@ Building the Docs
119
119
120
120
Install the docs requirements using ``pip``::
121
121
122
-
pip install .[doc]
122
+
pip install ".[doc]"
123
123
124
124
Once you have installed the required packages, you can build the docs with::
125
125
126
126
cd docs
127
127
make html
128
128
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.::
0 commit comments