@@ -18,7 +18,7 @@ or navigate to any of the documents listed below and download it individually.
18184 . [ Tutorial: Saving and sharing your NumPy arrays] ( content/save-load-arrays.md )
19195 . [ Tutorial: NumPy deep learning on MNIST from scratch] ( content/tutorial-deep-learning-on-mnist.md )
20206 . [ Tutorial: X-ray image processing] ( content/tutorial-x-ray-image-processing.md )
21- 7 . [ Tutorial: NumPy deep reinforcement learning with Pong from pixels] ( content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md )
21+ 7 . [ Tutorial: NumPy deep reinforcement learning with Pong from pixels] ( content/tutorial-deep-reinforcement-learning-with-pong-from-pixels.md )
22228 . [ Tutorial: Masked Arrays] ( content/tutorial-ma.md )
23239 . [ Tutorial: Static Equilibrium] ( content/tutorial-static_equilibrium.md )
2424
@@ -136,6 +136,20 @@ author, if applicable.</b>
136136For more information about GitHub and its workflow, you can see
137137[ this document] ( https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests ) .
138138
139+
140+ ### Building the Sphinx site locally
141+
142+ Building the tutorials website, which is published at
143+ https://github.com/numpy/numpy-tutorials , locally isn't necessary before making
144+ a contribution, but may be helpful:
145+
146+ ``` bash
147+ conda env create -f environment.yml
148+ conda activate numpy-tutorials
149+ cd site
150+ make html
151+ ```
152+
139153## Useful links and resources
140154
141155The following links may be useful:
@@ -149,3 +163,4 @@ The following links may be useful:
149163Note that regular documentation issues for NumPy can be found in the [ main NumPy
150164repository] ( https://github.com/numpy/numpy/issues ) (see the ` Documentation `
151165labels there).
166+
0 commit comments