[doc] update doc (#15740)
Signed-off-by: reidliu41 <reid201711@gmail.com> Co-authored-by: reidliu41 <reid201711@gmail.com>
This commit is contained in:
parent
7c1f760024
commit
73aa7041bf
@ -2,19 +2,42 @@
|
|||||||
|
|
||||||
## Build the docs
|
## Build the docs
|
||||||
|
|
||||||
```bash
|
- Make sure in `docs` directory
|
||||||
# Install dependencies.
|
|
||||||
pip install -r ../requirements/docs.txt
|
|
||||||
|
|
||||||
# Build the docs.
|
```bash
|
||||||
|
cd docs
|
||||||
|
```
|
||||||
|
|
||||||
|
- Install the dependencies:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pip install -r ../requirements/docs.txt
|
||||||
|
```
|
||||||
|
|
||||||
|
- Clean the previous build (optional but recommended):
|
||||||
|
|
||||||
|
```bash
|
||||||
make clean
|
make clean
|
||||||
|
```
|
||||||
|
|
||||||
|
- Generate the HTML documentation:
|
||||||
|
|
||||||
|
```bash
|
||||||
make html
|
make html
|
||||||
```
|
```
|
||||||
|
|
||||||
## Open the docs with your browser
|
## Open the docs with your browser
|
||||||
|
|
||||||
|
- Serve the documentation locally:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python -m http.server -d build/html/
|
python -m http.server -d build/html/
|
||||||
```
|
```
|
||||||
|
|
||||||
Launch your browser and open localhost:8000.
|
This will start a local server at http://localhost:8000. You can now open your browser and view the documentation.
|
||||||
|
|
||||||
|
If port 8000 is already in use, you can specify a different port, for example:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python -m http.server 3000 -d build/html/
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user